Mercurial > hg > Game > Cerium
view TaskManager/Test/test_render/Joystick.h @ 285:4871fc824525 draft
add Doxygen
author | e065746@localhost.localdomain |
---|---|
date | Fri, 05 Jun 2009 17:24:38 +0900 |
parents | 0b0e0f323742 |
children | b3fb0013e6b2 |
line wrap: on
line source
#ifndef INCLUDED_JOYSTICK #define INCLUDED_JOYSTICK #include "SDL.h" #ifndef INCLUDED_PAD # include "Pad.h" #endif class Joystick : public Pad { public: SDL_Joystick *joy; Sint16 axis; Joystick(SDL_Joystick *j); ~Joystick(void); void check(void); }; #endif