diff options
author | STRWarrior <niels.breuker@hotmail.nl> | 2013-12-30 22:56:08 +0100 |
---|---|---|
committer | STRWarrior <niels.breuker@hotmail.nl> | 2013-12-30 22:56:08 +0100 |
commit | cd435ffca970f954d2ade1e81c7c4ae7df75907e (patch) | |
tree | 76dd51fc9c073abcc96b7a4ce3d998438f137bba /src/Bindings/PluginManager.h | |
parent | Fixed compilation in VC2008. (diff) | |
download | cuberite-cd435ffca970f954d2ade1e81c7c4ae7df75907e.tar cuberite-cd435ffca970f954d2ade1e81c7c4ae7df75907e.tar.gz cuberite-cd435ffca970f954d2ade1e81c7c4ae7df75907e.tar.bz2 cuberite-cd435ffca970f954d2ade1e81c7c4ae7df75907e.tar.lz cuberite-cd435ffca970f954d2ade1e81c7c4ae7df75907e.tar.xz cuberite-cd435ffca970f954d2ade1e81c7c4ae7df75907e.tar.zst cuberite-cd435ffca970f954d2ade1e81c7c4ae7df75907e.zip |
Diffstat (limited to 'src/Bindings/PluginManager.h')
-rw-r--r-- | src/Bindings/PluginManager.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Bindings/PluginManager.h b/src/Bindings/PluginManager.h index e94421057..da867c7b0 100644 --- a/src/Bindings/PluginManager.h +++ b/src/Bindings/PluginManager.h @@ -80,6 +80,8 @@ public: // tolua_export HOOK_PLAYER_BREAKING_BLOCK, HOOK_PLAYER_BROKEN_BLOCK, HOOK_PLAYER_EATING, + HOOK_PLAYER_FISHED, + HOOK_PLAYER_FISHING, HOOK_PLAYER_JOINED, HOOK_PLAYER_LEFT_CLICK, HOOK_PLAYER_MOVING, @@ -168,6 +170,8 @@ public: // tolua_export bool CallHookPlayerBreakingBlock (cPlayer & a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta); bool CallHookPlayerBrokenBlock (cPlayer & a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta); bool CallHookPlayerEating (cPlayer & a_Player); + bool CallHookPlayerFished (cPlayer & a_Player, cItems a_Reward); + bool CallHookPlayerFishing (cPlayer & a_Player, cItems a_Reward); bool CallHookPlayerJoined (cPlayer & a_Player); bool CallHookPlayerMoving (cPlayer & a_Player); bool CallHookPlayerLeftClick (cPlayer & a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, char a_Status); |