Wip: working on add scenery
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user