summary refs log tree commit diff stats
path: root/src/editor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/editor.h')
-rw-r--r--src/editor.h17
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
6class Editor : public State {
7public:
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 */