From dd1631c52d574daf40fbd55c6e7bdcfdff301969 Mon Sep 17 00:00:00 2001 From: Akhil Garg Date: Thu, 13 Jul 2017 22:49:45 +0530 Subject: [PATCH] Update Main.cpp Fixed some comments --- C++/Text Adventure Part1/Main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/C++/Text Adventure Part1/Main.cpp b/C++/Text Adventure Part1/Main.cpp index 95c1c0e..0c39fa8 100644 --- a/C++/Text Adventure Part1/Main.cpp +++ b/C++/Text Adventure Part1/Main.cpp @@ -78,9 +78,9 @@ struct tRoom string strCurrentRoom; // This stores the name of the current room we are in (I.E. "Hallway") string strRoomDescription; // This holds the description of the current room string strRoomNorth; // This holds the name of the room that is to the north - string strRoomEast; // This holds the name of the room that is to the north - string strRoomSouth; // This holds the name of the room that is to the north - string strRoomWest; // This holds the name of the room that is to the north + string strRoomEast; // This holds the name of the room that is to the east + string strRoomSouth; // This holds the name of the room that is to the south + string strRoomWest; // This holds the name of the room that is to the west };