diff options
Diffstat (limited to 'floormat/app.hpp')
-rw-r--r-- | floormat/app.hpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/floormat/app.hpp b/floormat/app.hpp index c7c40d78..f0222e7f 100644 --- a/floormat/app.hpp +++ b/floormat/app.hpp @@ -27,7 +27,6 @@ struct floormat_app virtual void update(float dt) = 0; virtual void maybe_initialize_chunk(const chunk_coords& pos, chunk& c) = 0; - virtual void draw_msaa(); virtual void draw() = 0; virtual void on_mouse_move(const mouse_move_event& event) noexcept = 0; @@ -44,6 +43,4 @@ struct floormat_app virtual void on_mouse_enter() noexcept = 0; }; -inline void floormat_app::draw_msaa() {} - } // namespace floormat |