diff options
Diffstat (limited to 'editor/app.hpp')
-rw-r--r-- | editor/app.hpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/editor/app.hpp b/editor/app.hpp index e69de29b..0b369936 100644 --- a/editor/app.hpp +++ b/editor/app.hpp @@ -0,0 +1,19 @@ +#pragma once +#include "draw/wireframe-mesh.hpp" +#include "draw/wireframe-quad.hpp" +#include "draw/wireframe-box.hpp" +#include "main/floormat-app.hpp" + +namespace floormat { + +struct app final : floormat_app +{ + app(); + ~app() override; + +private: + wireframe_mesh<wireframe::quad> _wireframe_quad; + wireframe_mesh<wireframe::box> _wireframe_box; +}; + +} // namespace floormat |