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.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/titlestate.h b/titlestate.h index 8e6ffbc..e989659 100644 --- a/titlestate.h +++ b/titlestate.h
@@ -1,22 +1,23 @@
1#include <SDL.h> 1#include <SDL.h>
2
2#include "state.h" 3#include "state.h"
3 4
4#ifndef TITLESTATE_H 5#ifndef TITLESTATE_H
5#define TITLESTATE_H 6#define TITLESTATE_H
6 7
7class TitleState : public State { 8class TitleState : public State {
8 public: 9 public:
9 State* operator() (SDL_Window* window, SDL_Renderer* renderer); 10 State* operator()(SDL_Window* window, SDL_Renderer* renderer);
10}; 11};
11 12
12class HowToPlayState : public State { 13class HowToPlayState : public State {
13 public: 14 public:
14 State* operator() (SDL_Window* window, SDL_Renderer* renderer); 15 State* operator()(SDL_Window* window, SDL_Renderer* renderer);
15}; 16};
16 17
17class HowToPlayPageTwoState : public State { 18class HowToPlayPageTwoState : public State {
18 public: 19 public:
19 State* operator() (SDL_Window* window, SDL_Renderer* renderer); 20 State* operator()(SDL_Window* window, SDL_Renderer* renderer);
20}; 21};
21 22
22#endif \ No newline at end of file 23#endif \ No newline at end of file