summary refs log tree commit diff stats
path: root/src/editor.h
blob: dc908b930e83c73af4b8d9dc805c9e53db8a4db3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef EDITOR_H_8BB54FE3
#define EDITOR_H_8BB54FE3

#include "state.h"
#include "vector.h"

class Editor : public State {
public:

  void tick(
    double dt,
    const Uint8* keystate) override;

  void render(SDL_Renderer* ren) override;

private:

  texture_ptr background_;
  vec2i bgSize_;

};

#endif /* end of include guard: EDITOR_H_8BB54FE3 */