annotate Renderer/Engine/Joystick.h @ 2001:3e3cc12096f7
draft
dim_count and self management in multiple TaskList in a TaskArray
author |
kkb |
date |
Fri, 02 May 2014 19:56:25 +0900 |
parents |
3bc98f6d31ff |
children |
|
rev |
line source |
283
|
1 #ifndef INCLUDED_JOYSTICK
|
|
2 #define INCLUDED_JOYSTICK
|
|
3
|
|
4 #include "SDL.h"
|
|
5
|
539
|
6 #include "Pad.h"
|
283
|
7
|
|
8 class Joystick : public Pad {
|
|
9 public:
|
|
10 SDL_Joystick *joy;
|
|
11 Sint16 axis;
|
|
12
|
|
13 Joystick(SDL_Joystick *j);
|
|
14 ~Joystick(void);
|
|
15
|
|
16 void check(void);
|
|
17 };
|
|
18
|
|
19 #endif
|