Mercurial > hg > Members > kono > Cerium
view Renderer/Engine/Joystick.h @ 884:7c5a30983efa
obj_move fix
author | tkaito |
---|---|
date | Mon, 12 Jul 2010 04:12:13 +0900 |
parents | 735f76483bb2 |
children |
line wrap: on
line source
#ifndef INCLUDED_JOYSTICK #define INCLUDED_JOYSTICK #include "SDL.h" #include "Pad.h" class Joystick : public Pad { public: SDL_Joystick *joy; Sint16 axis; Joystick(SDL_Joystick *j); ~Joystick(void); void check(void); }; #endif