Removed the statistics structure from common/* and server/*

This commit is contained in:
Kayne Ruse
2014-11-16 22:34:12 +11:00
parent 97b7945191
commit cacd3dcd6d
10 changed files with 1 additions and 167 deletions
+1 -4
View File
@@ -25,7 +25,6 @@
//components
#include "character_defines.hpp"
#include "entity.hpp"
#include "statistics.hpp"
//std namespace
#include <string>
@@ -37,7 +36,7 @@ public:
~CharacterData() = default;
//accessors and mutators
Statistics* GetBaseStats();
//...
//database stuff
int GetOwner();
@@ -47,8 +46,6 @@ public:
private:
friend class CharacterManager;
Statistics baseStats;
int owner;
std::string handle;
std::string avatar;