Fixed: Warning (missing return)

--HG--
branch : develop
This commit is contained in:
kervala 2018-08-11 15:35:13 +02:00
parent c7ded068d9
commit ad99c2afb7

View file

@ -32,7 +32,7 @@ public:
NLMISC::CEntityId const& id() const;
bool spawn();
void despawn();
bool update() { }
bool update() { return false; }
void set(std::string const& prop, std::string const& value, bool reportChange=false) { }
std::string get(std::string const& prop);
std::string getIndexString() const { return _EntityId.toString(); }