Removed the statistics structure from common/* and server/*
This commit is contained in:
@@ -21,10 +21,6 @@
|
||||
*/
|
||||
#include "monster_data.hpp"
|
||||
|
||||
Statistics* MonsterData::GetBaseStats() {
|
||||
return &baseStats;
|
||||
}
|
||||
|
||||
std::string MonsterData::SetAvatar(std::string s) {
|
||||
return avatar = s;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user