diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-09-19 09:11:31 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-09-19 09:11:31 +0200 |
commit | 44e38e9643cc39ae84364ca7b8625399e17f2828 (patch) | |
tree | f40d9bdb448ae3f819870f1e82c5eb6a7f97abb9 /ProtoProxy/Connection.h | |
parent | ProtoProxy: Added the ENTITY-class packets handling (diff) | |
download | cuberite-44e38e9643cc39ae84364ca7b8625399e17f2828.tar cuberite-44e38e9643cc39ae84364ca7b8625399e17f2828.tar.gz cuberite-44e38e9643cc39ae84364ca7b8625399e17f2828.tar.bz2 cuberite-44e38e9643cc39ae84364ca7b8625399e17f2828.tar.lz cuberite-44e38e9643cc39ae84364ca7b8625399e17f2828.tar.xz cuberite-44e38e9643cc39ae84364ca7b8625399e17f2828.tar.zst cuberite-44e38e9643cc39ae84364ca7b8625399e17f2828.zip |
Diffstat (limited to '')
-rw-r--r-- | ProtoProxy/Connection.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ProtoProxy/Connection.h b/ProtoProxy/Connection.h index d45ef5d4e..b80a8bfcb 100644 --- a/ProtoProxy/Connection.h +++ b/ProtoProxy/Connection.h @@ -133,6 +133,7 @@ protected: bool HandleServerEntityRelativeMoveLook(void);
bool HandleServerEntityStatus(void);
bool HandleServerEntityTeleport(void);
+ bool HandleServerEntityVelocity(void);
bool HandleServerKeepAlive(void);
bool HandleServerKick(void);
bool HandleServerLogin(void);
@@ -144,6 +145,10 @@ protected: bool HandleServerPlayerPositionLook(void);
bool HandleServerSetExperience(void);
bool HandleServerSetSlot(void);
+ bool HandleServerSpawnMob(void);
+ bool HandleServerSpawnObjectVehicle(void);
+ bool HandleServerSpawnPainting(void);
+ bool HandleServerSpawnPickup(void);
bool HandleServerTimeUpdate(void);
bool HandleServerUpdateHealth(void);
bool HandleServerUpdateSign(void);
|