cjoystick.h 174 B

123456789101112
  1. #ifndef cjoystick_h
  2. #define cjoystick_h
  3. #include "cengine.h"
  4. void joystick_init();
  5. void joystick_finish();
  6. int joystick_count();
  7. SDL_Joystick* joystick_get(int i);
  8. #endif