view TaskManager/Test/test_render/Joystick.h @ 406:25f44290b8a9

add task/SendKey
author game@henri.cr.ie.u-ryukyu.ac.jp
date Wed, 23 Sep 2009 13:00:03 +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