Mercurial > hg > Game > Cerium
view Renderer/Engine/Joystick.h @ 1308:78248082c56d draft
reading COLLADA file minor change.
author | Taiki TAIRA <e095767@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 15 Dec 2011 14:28:21 +0900 |
parents | 3bc98f6d31ff |
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