Mercurial > hg > Members > kono > Cerium
annotate Renderer/Engine/Joystick.h @ 983:ff74988bbb2a
minor fix
author | root@henri.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Fri, 01 Oct 2010 00:37:06 +0900 |
parents | 735f76483bb2 |
children |
rev | line source |
---|---|
283 | 1 #ifndef INCLUDED_JOYSTICK |
2 #define INCLUDED_JOYSTICK | |
3 | |
4 #include "SDL.h" | |
5 | |
507 | 6 #include "Pad.h" |
283 | 7 |
8 class Joystick : public Pad { | |
9 public: | |
10 SDL_Joystick *joy; | |
11 Sint16 axis; | |
12 | |
13 Joystick(SDL_Joystick *j); | |
14 ~Joystick(void); | |
15 | |
16 void check(void); | |
17 }; | |
18 | |
19 #endif |