1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-08-08 07:09:52 +00:00

Preparations for multiple ActionSets support

This commit is contained in:
fgenesis 2016-07-15 03:22:27 +02:00
parent 95fd453a99
commit 2fd181913e
22 changed files with 481 additions and 304 deletions

View file

@ -42,6 +42,8 @@ public:
const char *getAxisName(int axis) const;
const char *getButtonName(int btn) const;
const char *getName() const;
const char *getGUID() const;
Vector rightStick;
@ -56,6 +58,8 @@ private:
int numJoyAxes;
SDL_Joystick *sdl_joy;
float axisRaw[MAX_JOYSTICK_AXIS];
std::string name;
std::string guid;
# ifdef BBGE_BUILD_SDL2
SDL_GameController *sdl_controller;