Wip: Working on room movements, player location in room, and data storage

This commit is contained in:
Timothy O'Barr
2026-09-11 16:07:17 -05:00
parent 0e7406db96
commit b9104dad64
13 changed files with 79 additions and 62 deletions
+2 -2
View File
@@ -6,8 +6,8 @@
typedef int (*FUNCTION)(const std::string &s);
static std::vector<std::string> Verbs{"Quit", "Exit", "Go", "Move", "Look"};
static std::vector<std::string> Nouns{"Object", "Door", "North", "South", "East",
"West", "Up", "Down", "Left", "right"};
static std::vector<std::string> Nouns{"Object", "Door", "North", "South", "East", "West",
"Up", "Down", "Left", "Right", "To", "At"};
class CommandParser {
private: