blob: bb6a6a31c9a5a1aa42a4d10809f8747989a1e4d7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef editor_hpp
#define editor_hpp
struct UI;
struct Model_Instance;
struct Line_Renderer;
void init_editor(UI* ui);
void deinit_editor();
void editor_on_select(Model_Instance* instance, int mesh);
void editor_draw(Line_Renderer& lr);
#endif
|