Wip: working on add scenery

This commit is contained in:
Timothy O'Barr
2026-09-01 16:27:01 -05:00
parent 15f0e369b2
commit 668d416256
7 changed files with 138 additions and 71 deletions
+3 -2
View File
@@ -4,7 +4,7 @@
#include <string>
#include <vector>
#include "json.hpp"
#include "object.h"
#include "scenery.h"
using json = nlohmann::json;
@@ -27,10 +27,11 @@ private:
std::string name;
std::string description;
std::vector<Exit> exits;
std::vector<Scenery> scenery;
public:
Room();
Room(int id, std::string name, std::string desc, std::vector<Exit> e);
Room(int id, std::string name, std::string desc, std::vector<Exit> e, std::vector<Scenery> s);
Room(const Room &r);
void PrintAvalibleExits();