summary refs log tree commit diff stats
path: root/src/game.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/game.cpp b/src/game.cpp index b7dd200..d10c52c 100644 --- a/src/game.cpp +++ b/src/game.cpp
@@ -40,7 +40,10 @@ Game::Game()
40 systemManager_.emplaceSystem<MappingSystem>(*this); 40 systemManager_.emplaceSystem<MappingSystem>(*this);
41 systemManager_.emplaceSystem<AnimatingSystem>(*this); 41 systemManager_.emplaceSystem<AnimatingSystem>(*this);
42 42
43 systemManager_.getSystem<RealizingSystem>().initSingleton("res/maps.xml"); 43 systemManager_.getSystem<RealizingSystem>().initSingleton(
44 "res/maps.xml",
45 "res/entities.xml");
46
44 systemManager_.getSystem<PlayingSystem>().initPlayer(); 47 systemManager_.getSystem<PlayingSystem>().initPlayer();
45 48
46 glfwSwapInterval(1); 49 glfwSwapInterval(1);