Added some functionality

This commit is contained in:
Torsten Schulz
2017-07-28 20:14:51 +02:00
parent b9d2b3e347
commit 984f39479f
7 changed files with 46 additions and 20 deletions

2
user.h
View File

@@ -37,6 +37,7 @@ namespace Yc {
void checkerTask();
void stop();
std::string color() const;
void setParent(Room *parent);
private:
Room *_parent;
std::string _name;
@@ -50,6 +51,7 @@ namespace Yc {
void handleMessage(std::string message);
void doDice();
void changeRoom(std::string newRoom, std::string password);
void checkString(std::string message);
};
} // namespace Lib