Mercurial > hg > Members > kono > Cerium
view TaskManager/Test/test_render/Joystick.h @ 552:a307e33178e7
add Application/send_linda.cc
author | aaa |
---|---|
date | Thu, 22 Oct 2009 19:34:38 +0900 |
parents | 25c820b6060e |
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