diff options
author | Mattes D <github@xoft.cz> | 2014-03-09 15:13:27 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-03-09 15:13:27 +0100 |
commit | d3c38c40e4cebd6a69869005fb0863b8d6085949 (patch) | |
tree | 0eae42ee4e07efd5df42029b66cc3faab808265d /src/ClientHandle.h | |
parent | Merge pull request #775 from worktycho/warnings (diff) | |
parent | Adjusted style of switch/case (diff) | |
download | cuberite-d3c38c40e4cebd6a69869005fb0863b8d6085949.tar cuberite-d3c38c40e4cebd6a69869005fb0863b8d6085949.tar.gz cuberite-d3c38c40e4cebd6a69869005fb0863b8d6085949.tar.bz2 cuberite-d3c38c40e4cebd6a69869005fb0863b8d6085949.tar.lz cuberite-d3c38c40e4cebd6a69869005fb0863b8d6085949.tar.xz cuberite-d3c38c40e4cebd6a69869005fb0863b8d6085949.tar.zst cuberite-d3c38c40e4cebd6a69869005fb0863b8d6085949.zip |
Diffstat (limited to 'src/ClientHandle.h')
-rw-r--r-- | src/ClientHandle.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ClientHandle.h b/src/ClientHandle.h index 194533402..035fadfe4 100644 --- a/src/ClientHandle.h +++ b/src/ClientHandle.h @@ -188,7 +188,9 @@ public: void HandleChat (const AString & a_Message); void HandleCreativeInventory(short a_SlotNum, const cItem & a_HeldItem); void HandleDisconnect (const AString & a_Reason); - void HandleEntityAction (int a_EntityID, char a_ActionID); + void HandleEntityCrouch (int a_EntityID, bool a_IsCrouching); + void HandleEntityLeaveBed (int a_EntityID); + void HandleEntitySprinting (int a_EntityID, bool a_IsSprinting); /** Called when the protocol handshake has been received (for protocol versions that support it; otherwise the first instant when a username is received). |