summaryrefslogtreecommitdiffstats
path: root/src/Bindings/PluginManager.h
diff options
context:
space:
mode:
authorLukas Pioch <lukas@zgow.de>2015-05-18 22:29:39 +0200
committerLukas Pioch <lukas@zgow.de>2015-05-18 22:29:39 +0200
commit4d4d1e9c69a15e154bc358f1363b961de80b27d6 (patch)
tree9e95fe63ce0a3d006c71235f107f62bf0f10a86e /src/Bindings/PluginManager.h
parentAPIDump: Removed an unneeded global variable. (diff)
downloadcuberite-4d4d1e9c69a15e154bc358f1363b961de80b27d6.tar
cuberite-4d4d1e9c69a15e154bc358f1363b961de80b27d6.tar.gz
cuberite-4d4d1e9c69a15e154bc358f1363b961de80b27d6.tar.bz2
cuberite-4d4d1e9c69a15e154bc358f1363b961de80b27d6.tar.lz
cuberite-4d4d1e9c69a15e154bc358f1363b961de80b27d6.tar.xz
cuberite-4d4d1e9c69a15e154bc358f1363b961de80b27d6.tar.zst
cuberite-4d4d1e9c69a15e154bc358f1363b961de80b27d6.zip
Diffstat (limited to '')
-rw-r--r--src/Bindings/PluginManager.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Bindings/PluginManager.h b/src/Bindings/PluginManager.h
index d8c886b62..2c3eaa75f 100644
--- a/src/Bindings/PluginManager.h
+++ b/src/Bindings/PluginManager.h
@@ -85,6 +85,8 @@ public:
HOOK_DISCONNECT,
HOOK_PLAYER_ANIMATION,
HOOK_ENTITY_ADD_EFFECT,
+ HOOK_ENTITY_CHANGE_WORLD,
+ HOOK_ENTITY_CHANGED_WORLD,
HOOK_EXECUTE_COMMAND,
HOOK_EXPLODED,
HOOK_EXPLODING,
@@ -200,6 +202,8 @@ public:
bool CallHookDisconnect (cClientHandle & a_Client, const AString & a_Reason);
bool CallHookEntityAddEffect (cEntity & a_Entity, int a_EffectType, int a_EffectDurationTicks, int a_EffectIntensity, double a_DistanceModifier);
bool CallHookEntityTeleport (cEntity & a_Entity, const Vector3d & a_OldPosition, const Vector3d & a_NewPosition);
+ bool CallHookEntityChangeWorld (cEntity & a_Entity, cWorld & a_World);
+ bool CallHookEntityChangedWorld (cEntity & a_Entity, cWorld & a_World);
bool CallHookExecuteCommand (cPlayer * a_Player, const AStringVector & a_Split, const AString & a_EntireCommand, CommandResult & a_Result); // If a_Player == nullptr, it is a console cmd
bool CallHookExploded (cWorld & a_World, double a_ExplosionSize, bool a_CanCauseFire, double a_X, double a_Y, double a_Z, eExplosionSource a_Source, void * a_SourceData);
bool CallHookExploding (cWorld & a_World, double & a_ExplosionSize, bool & a_CanCauseFire, double a_X, double a_Y, double a_Z, eExplosionSource a_Source, void * a_SourceData);