From fcca8bc835db65ac170d1148d52a815df8838d53 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 22 Mar 2025 12:17:57 +0000 Subject: Invert how shared/unique is specified for Collection Template param is a pointer now, typedefs added for ease. --- game/gamestate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'game/gamestate.h') diff --git a/game/gamestate.h b/game/gamestate.h index 189417d..c5ad239 100644 --- a/game/gamestate.h +++ b/game/gamestate.h @@ -16,7 +16,7 @@ public: NO_MOVE(GameState); NO_COPY(GameState); - Collection world; + SharedCollection world; std::shared_ptr terrain; std::shared_ptr environment; AssetFactory::Assets assets; -- cgit v1.2.3 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/gamestate.h') 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