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
-4
View File
@@ -23,7 +23,6 @@
#define MONSTERDATA_HPP_
#include "entity.hpp"
#include "statistics.hpp"
#include <string>
@@ -32,8 +31,6 @@ public:
MonsterData() = default;
~MonsterData() = default;
Statistics* GetBaseStats();
std::string SetAvatar(std::string);
int SetScriptReference(int);
@@ -43,7 +40,6 @@ public:
private:
friend class MonsterManager;
Statistics baseStats;
std::string avatar;
int scriptRef;
};