summary refs log tree commit diff stats
path: root/state.h
diff options
context:
space:
mode:
Diffstat (limited to 'state.h')
-rw-r--r--state.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/state.h b/state.h index 5e8c4e7..0d50ab3 100644 --- a/state.h +++ b/state.h
@@ -3,10 +3,11 @@
3#ifndef STATE_H 3#ifndef STATE_H
4#define STATE_H 4#define STATE_H
5 5
6class State 6class State {
7{ 7 public:
8 public: 8 virtual State* operator()(SDL_Window* window, SDL_Renderer* renderer) {
9 virtual State* operator() (SDL_Window* window, SDL_Renderer* renderer) {return NULL;}; 9 return NULL;
10 };
10}; 11};
11 12
12#endif \ No newline at end of file 13#endif \ No newline at end of file