diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-23 20:49:14 +0200 |
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-23 20:49:14 +0200 |
| commit | b6a067678ab9e225647b256595d54dde2ce6f2f5 (patch) | |
| tree | 5511af38d35cea0cfaf59fffe9b513d46820f0b2 /editor | |
| parent | 4341fb36784a9da7b519d81d78e8df983816d791 (diff) | |
a
Diffstat (limited to 'editor')
| -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 |
