From cbf13666d2db374f1564441b1f68371ac69cf096 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sat, 13 Jan 2024 05:31:32 +0100 Subject: zw --- floormat/main.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'floormat') diff --git a/floormat/main.hpp b/floormat/main.hpp index 27404fe3..ead48a8d 100644 --- a/floormat/main.hpp +++ b/floormat/main.hpp @@ -13,7 +13,7 @@ struct fm_settings; struct floormat_app; struct tile_shader; struct lightmap_shader; -struct world; +class world; struct scenery; class anim_atlas; struct clickable; @@ -69,9 +69,9 @@ struct floormat_main [[nodiscard]] static bool check_chunk_visible(const Vector2d& offset, const Vector2i& size) noexcept; virtual struct meshes meshes() noexcept = 0; - virtual struct world& world() noexcept = 0; - virtual struct world& reset_world() noexcept = 0; - virtual struct world& reset_world(struct world&& w) noexcept = 0; + virtual class world& world() noexcept = 0; + virtual class world& reset_world() noexcept = 0; + virtual class world& reset_world(class world&& w) noexcept = 0; virtual SDL_Window* window() noexcept = 0; Vector2 dpi_scale() const noexcept { return _dpi_scale; } static int get_mods() noexcept; -- cgit v1.2.3