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.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/editor.h b/src/editor.h index aa137ec..dc908b9 100644 --- a/src/editor.h +++ b/src/editor.h
@@ -2,6 +2,7 @@
2#define EDITOR_H_8BB54FE3 2#define EDITOR_H_8BB54FE3
3 3
4#include "state.h" 4#include "state.h"
5#include "vector.h"
5 6
6class Editor : public State { 7class Editor : public State {
7public: 8public:
@@ -12,6 +13,11 @@ public:
12 13
13 void render(SDL_Renderer* ren) override; 14 void render(SDL_Renderer* ren) override;
14 15
16private:
17
18 texture_ptr background_;
19 vec2i bgSize_;
20
15}; 21};
16 22
17#endif /* end of include guard: EDITOR_H_8BB54FE3 */ 23#endif /* end of include guard: EDITOR_H_8BB54FE3 */