#ifndef LIME_SDL_JOYSTICK_H #define LIME_SDL_JOYSTICK_H #include #include #include namespace lime { class SDLJoystick { public: static bool Connect (int id); static bool Disconnect (int id); static int GetInstanceID (int deviceID); static void Init (); static bool IsAccelerometer (int id); }; } #endif