summary refs log tree commit diff stats
path: root/titlestate.h
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-11-02 09:17:25 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2023-11-02 09:17:25 -0400
commit45d6e635c880a7fae8711fba366519dd314d9faf (patch)
treea7c5e254938161727c8ba191ad68f801f1f0f2bb /titlestate.h
parent4e8f554286593ec8aca6c61fa0fb9c4934bd640c (diff)
downloadmazeoflife-45d6e635c880a7fae8711fba366519dd314d9faf.tar.gz
mazeoflife-45d6e635c880a7fae8711fba366519dd314d9faf.tar.bz2
mazeoflife-45d6e635c880a7fae8711fba366519dd314d9faf.zip
Formatted source code
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