From ad8ae988ba1928af5063ca1dc7375356e467979b Mon Sep 17 00:00:00 2001 From: Charles Date: Sat, 21 Mar 2020 13:22:38 +0100 Subject: Sprites loading and display, player move --- src/main.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index 3a52cee..0bdf404 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -4,13 +4,13 @@ int main() { Game game( - "##########\n" - "# m #\n" - "# * #\n" - "# #\n" - "# U #\n" - "# #\n" - "##########\n" + "#######\n" + "# m #\n" + "#* #\n" + "# #\n" + "# U #\n" + "# #\n" + "#######\n" ); Graphics graphics(game, "mario sokoban", 500, 500); -- cgit