The rabbit is moving on it's own

This commit is contained in:
2016-03-29 20:19:13 +11:00
parent a532d33579
commit 4794965166
8 changed files with 78 additions and 5 deletions
+5
View File
@@ -25,6 +25,7 @@
#include "lua.hpp"
#include <map>
#include <string>
/* DOCS: Creature attributes, read more
@@ -49,9 +50,13 @@ public:
int SetScriptReference(int);
int GetScriptReference();
std::string SetTag(std::string key, std::string value);
std::string GetTag(std::string key);
private:
friend class CreatureManager;
std::string avatar;
int scriptRef = LUA_NOREF;
std::map<std::string, std::string> tags;
};