diff options
Diffstat (limited to 'source/Entity.h')
-rw-r--r-- | source/Entity.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/Entity.h b/source/Entity.h index bd66df5f5..c9d26e1a1 100644 --- a/source/Entity.h +++ b/source/Entity.h @@ -107,7 +107,8 @@ public: cEntity(eEntityType a_EntityType, double a_X, double a_Y, double a_Z, double a_Width, double a_Height); virtual ~cEntity(); - virtual void Initialize(cWorld * a_World); + /// Spawns the entity in the world; returns true if spawned, false if not (plugin disallowed) + virtual bool Initialize(cWorld * a_World); // tolua_begin |