diff options
Diffstat (limited to 'src/editor.h')
| -rw-r--r-- | src/editor.h | 17 |
1 files changed, 17 insertions, 0 deletions
| diff --git a/src/editor.h b/src/editor.h new file mode 100644 index 0000000..aa137ec --- /dev/null +++ b/src/editor.h | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | #ifndef EDITOR_H_8BB54FE3 | ||
| 2 | #define EDITOR_H_8BB54FE3 | ||
| 3 | |||
| 4 | #include "state.h" | ||
| 5 | |||
| 6 | class Editor : public State { | ||
| 7 | public: | ||
| 8 | |||
| 9 | void tick( | ||
| 10 | double dt, | ||
| 11 | const Uint8* keystate) override; | ||
| 12 | |||
| 13 | void render(SDL_Renderer* ren) override; | ||
| 14 | |||
| 15 | }; | ||
| 16 | |||
| 17 | #endif /* end of include guard: EDITOR_H_8BB54FE3 */ | ||
