diff options
Diffstat (limited to 'editor.hpp')
-rw-r--r-- | editor.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/editor.hpp b/editor.hpp new file mode 100644 index 0000000..bb6a6a3 --- /dev/null +++ b/editor.hpp @@ -0,0 +1,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 |