view Renderer/Engine/Joystick.h @ 751:8b45afad160f

add task/DataLoad task/DataUpdate
author hiroki
date Mon, 25 Jan 2010 19:25:40 +0900
parents 735f76483bb2
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