summaryrefslogtreecommitdiff
path: root/editor.hpp
blob: a809d6db75f8c29841a46bf5c697a76677a412b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef editor_hpp
#define editor_hpp

#include "world.hpp"

struct UI;
struct Model_Instance;
struct Line_Renderer;

void init_editor(UI* ui, World* w);
void deinit_editor();
void editor_on_select(Entity_Id e, int m);
void editor_draw(Line_Renderer& lr);

#endif