Parse Rooms and added proper room JSON

This commit is contained in:
Timothy O'Barr
2026-08-18 11:59:09 -05:00
parent 455e54b557
commit db2cb3aeea
6 changed files with 63 additions and 79 deletions
+5 -5
View File
@@ -1,14 +1,14 @@
#include <fstream>
#include <ios>
#include <iostream>
#include "game.h"
int main(int argc, char *argv[]) {
Game game;
Game game; // Calls default constructor which Initalizes GAME
if (game.Init()) {
while (game.GetIsActive()) {
game.Run();
}
while (game.GetIsActive()) {
game.Run();
}
return 0;