summaryrefslogtreecommitdiff
path: root/game/gamestate.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2025-03-22 12:17:57 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2025-03-22 12:17:57 +0000
commitfcca8bc835db65ac170d1148d52a815df8838d53 (patch)
treec28d017961cb05f6360042e7a089f10641f174b4 /game/gamestate.h
parentAdd ManyPtr which tracks specified subclasses (diff)
downloadilt-fcca8bc835db65ac170d1148d52a815df8838d53.tar.bz2
ilt-fcca8bc835db65ac170d1148d52a815df8838d53.tar.xz
ilt-fcca8bc835db65ac170d1148d52a815df8838d53.zip
Invert how shared/unique is specified for Collection
Template param is a pointer now, typedefs added for ease.
Diffstat (limited to 'game/gamestate.h')
-rw-r--r--game/gamestate.h2
1 files changed, 1 insertions, 1 deletions
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<WorldObject> world;
+ SharedCollection<WorldObject> world;
std::shared_ptr<Terrain> terrain;
std::shared_ptr<Environment> environment;
AssetFactory::Assets assets;