summary refs log tree commit diff stats
path: root/titlestate.h
diff options
context:
space:
mode:
Diffstat (limited to 'titlestate.h')
-rw-r--r--titlestate.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/titlestate.h b/titlestate.h new file mode 100644 index 0000000..9056626 --- /dev/null +++ b/titlestate.h
@@ -0,0 +1,16 @@
1#ifndef TITLESTATE_H
2#define TITLESTATE_H
3
4class TitleState : public State {
5 public:
6 TitleState();
7 void input(SDLKey key);
8 void render(SDL_Surface* screen);
9
10 private:
11 SDL_Surface* background;
12 SDL_Surface* pointer;
13 int selection;
14};
15
16#endif