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
+10
View File
@@ -0,0 +1,10 @@
#pragma once
#include "room.h"
class World {
private:
std::vector<std::vector<Room>> rooms;
public:
void Init();
};