Implement basic rooms and navigation

This commit is contained in:
Timothy O'Barr
2026-08-20 08:10:07 -05:00
parent 707b88c736
commit 9b72d1588e
11 changed files with 125 additions and 115 deletions
+4 -1
View File
@@ -11,6 +11,9 @@
extern bool isActive;
extern int curX, curY;
#define MAP_HEIGHT 5
#define MAP_WIDTH 5
@@ -40,4 +43,4 @@ public:
static void SetIsActive(const bool active) { isActive = active; }
};
static int Exit(std::string n);
static int Quit(std::string n);