From 5edabac3544f2d270044a6bfe4f0e9709b3799a4 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 23 Mar 2025 21:01:09 +0000 Subject: Add Renderable typed collection to GameState worldObjects --- game/gamestate.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'game') diff --git a/game/gamestate.h b/game/gamestate.h index c5ad239..85cb5db 100644 --- a/game/gamestate.h +++ b/game/gamestate.h @@ -8,6 +8,7 @@ class WorldObject; class Terrain; class Environment; +class Renderable; class GameState { public: @@ -16,7 +17,7 @@ public: NO_MOVE(GameState); NO_COPY(GameState); - SharedCollection world; + SharedCollection world; std::shared_ptr terrain; std::shared_ptr environment; AssetFactory::Assets assets; -- cgit v1.2.3