Mercurial > hg > Game > Cerium
view Renderer/test_render/Joystick.h @ 283:15bfacccde99 draft
fix test_render
author | e065746@localhost.localdomain |
---|---|
date | Fri, 05 Jun 2009 16:49:12 +0900 |
parents | |
children |
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