Created '*_data.cpp' files, modified API files a bit

This commit is contained in:
Kayne Ruse
2014-11-06 01:54:20 +11:00
parent daa38413f3
commit f2d79225a3
15 changed files with 268 additions and 40 deletions
+4 -4
View File
@@ -37,12 +37,12 @@ public:
~CharacterData() = default;
//accessors and mutators
Statistics* GetBaseStats() { return &baseStats; }
Statistics* GetBaseStats();
//database stuff
int GetOwner() { return owner; }
std::string GetHandle() { return handle; }
std::string GetAvatar() { return avatar; }
int GetOwner();
std::string GetHandle();
std::string GetAvatar();
private:
friend class CharacterManager;