From ab18806cddf99514e7ac8d970587e5f1d6d01603 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Fri, 19 Jun 2009 20:46:53 -0400 Subject: Added title screen Refs #103 --- titlestate.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 titlestate.h (limited to 'titlestate.h') diff --git a/titlestate.h b/titlestate.h new file mode 100644 index 0000000..9056626 --- /dev/null +++ b/titlestate.h @@ -0,0 +1,16 @@ +#ifndef TITLESTATE_H +#define TITLESTATE_H + +class TitleState : public State { + public: + TitleState(); + void input(SDLKey key); + void render(SDL_Surface* screen); + + private: + SDL_Surface* background; + SDL_Surface* pointer; + int selection; +}; + +#endif -- cgit 1.4.1