original 1.0.1 release
[xwelltris.git] / src / sdl / sdlwellinput.h
blob5baef798e3bc8751868c484a9df7be3da9a511f4
1 #ifndef SDLWELLINPUT_H
2 #define SDLWELLINPUT_H
4 #include "wellinput.h"
5 #include "sdlwellengine.h"
7 class SDLWellInput:public WellInput
9 SDLWellEngine *engine;
10 SDL_Surface *mainw;
12 virtual void draw_text();
13 void process_key(SDL_Event *xev);
14 void show_cursor();
15 void hide_cursor();
17 public:
18 SDLWellInput(char *iname);
20 virtual bool process_event(wEvent);
25 #endif