summaryrefslogtreecommitdiffhomepage
path: root/main/setup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main/setup.cpp')
-rw-r--r--main/setup.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/setup.cpp b/main/setup.cpp
index 45f941cb..6f794719 100644
--- a/main/setup.cpp
+++ b/main/setup.cpp
@@ -103,12 +103,12 @@ auto main_impl::meshes() noexcept -> struct meshes
return { _ground_mesh, _wall_mesh, _anim_mesh, };
};
-struct world& main_impl::reset_world() noexcept
+class world& main_impl::reset_world() noexcept
{
return reset_world(floormat::world{});
}
-struct world& main_impl::reset_world(struct world&& w) noexcept
+class world& main_impl::reset_world(class world&& w) noexcept
{
_clickable_scenery.clear();
_world = std::move(w);