Files
lime/project/include/ui/Joystick.h
2023-05-11 20:22:27 -04:00

24 lines
322 B
C++

#ifndef LIME_UI_JOYSTICK_H
#define LIME_UI_JOYSTICK_H
namespace lime {
class Joystick {
public:
static const char* GetDeviceGUID (int id);
static const char* GetDeviceName (int id);
static int GetNumAxes (int id);
static int GetNumButtons (int id);
static int GetNumHats (int id);
};
}
#endif