aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 8960149..3a52cee 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -3,8 +3,17 @@
int main()
{
- Game game;
- Graphics graphics(game, "mario sokoban", 640, 480);
+ Game game(
+ "##########\n"
+ "# m #\n"
+ "# * #\n"
+ "# #\n"
+ "# U #\n"
+ "# #\n"
+ "##########\n"
+ );
+
+ Graphics graphics(game, "mario sokoban", 500, 500);
while (graphics.isRunning())
graphics.update();