Filled out some client side monster code

This commit is contained in:
Kayne Ruse
2015-01-21 05:09:55 +11:00
parent 65f23bbd1a
commit 38f6ced633
4 changed files with 98 additions and 9 deletions
+10 -1
View File
@@ -29,8 +29,17 @@ public:
BaseMonster() = default;
virtual ~BaseMonster() = default;
void CorrectSprite();
std::string SetHandle(std::string s);
std::string GetHandle() const;
std::string SetAvatar(std::string s);
std::string GetAvatar() const;
protected:
//
//metadata
std::string handle;
std::string avatar;
};
#endif