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

#include "state.h"

class Editor : public State {
public:

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

  void render(SDL_Renderer* ren) override;

};

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