summary refs log tree commit diff stats
path: root/src/main.cpp
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2015-03-18 09:48:43 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2015-03-18 09:48:43 -0400
commit2ec163612042bfa5e4e1bf220b489506f7039677 (patch)
treeead735eb871c3faf813635d08a89ec48195dab35 /src/main.cpp
parentdc0f0d6fa178403080658887af3ca1a6c0e41188 (diff)
downloadtherapy-2ec163612042bfa5e4e1bf220b489506f7039677.tar.gz
therapy-2ec163612042bfa5e4e1bf220b489506f7039677.tar.bz2
therapy-2ec163612042bfa5e4e1bf220b489506f7039677.zip
Game can now read map file from map editor (also added new map)
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 96eb7da..4157350 100644 --- a/src/main.cpp +++ b/src/main.cpp
@@ -14,7 +14,7 @@ int main()
14 14
15 // Put this in a block so game goes out of scope before we destroy the renderer 15 // Put this in a block so game goes out of scope before we destroy the renderer
16 { 16 {
17 Game game; 17 Game game {"res/maps.xml"};
18 game.execute(window); 18 game.execute(window);
19 } 19 }
20 20