diff options
author | madmaxoft <github@xoft.cz> | 2013-10-29 19:05:51 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-10-29 19:05:51 +0100 |
commit | 111fb24d3a4bbcd1e22feb8d92390e4eed07a225 (patch) | |
tree | 97158fa7a49458db08fcfe9ce3d9a03068637949 /Tools/ProtoProxy | |
parent | ProtoProxy: The login part of the protocol is implemented. (diff) | |
download | cuberite-111fb24d3a4bbcd1e22feb8d92390e4eed07a225.tar cuberite-111fb24d3a4bbcd1e22feb8d92390e4eed07a225.tar.gz cuberite-111fb24d3a4bbcd1e22feb8d92390e4eed07a225.tar.bz2 cuberite-111fb24d3a4bbcd1e22feb8d92390e4eed07a225.tar.lz cuberite-111fb24d3a4bbcd1e22feb8d92390e4eed07a225.tar.xz cuberite-111fb24d3a4bbcd1e22feb8d92390e4eed07a225.tar.zst cuberite-111fb24d3a4bbcd1e22feb8d92390e4eed07a225.zip |
Diffstat (limited to 'Tools/ProtoProxy')
-rw-r--r-- | Tools/ProtoProxy/Connection.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Tools/ProtoProxy/Connection.h b/Tools/ProtoProxy/Connection.h index 2dc57d645..56d443b86 100644 --- a/Tools/ProtoProxy/Connection.h +++ b/Tools/ProtoProxy/Connection.h @@ -185,6 +185,7 @@ protected: bool HandleServerEntityVelocity(void); bool HandleServerExplosion(void); bool HandleServerIncrementStatistic(void); + bool HandleServerJoinGame(void); bool HandleServerKeepAlive(void); bool HandleServerKick(void); bool HandleServerLogin(void); @@ -197,15 +198,18 @@ protected: bool HandleServerPlayerListItem(void); bool HandleServerPlayerPositionLook(void); bool HandleServerPluginMessage(void); + bool HandleServerRespawn(void); bool HandleServerSetExperience(void); bool HandleServerSetSlot(void); bool HandleServerSlotSelect(void); bool HandleServerSoundEffect(void); + bool HandleServerSpawnExperienceOrbs(void); bool HandleServerSpawnMob(void); bool HandleServerSpawnNamedEntity(void); bool HandleServerSpawnObjectVehicle(void); bool HandleServerSpawnPainting(void); bool HandleServerSpawnPickup(void); + bool HandleServerStatistics(void); bool HandleServerStatusPing(void); bool HandleServerStatusResponse(void); bool HandleServerTabCompletion(void); @@ -213,6 +217,7 @@ protected: bool HandleServerUpdateHealth(void); bool HandleServerUpdateSign(void); bool HandleServerUpdateTileEntity(void); + bool HandleServerUseBed(void); bool HandleServerWindowClose(void); bool HandleServerWindowContents(void); bool HandleServerWindowOpen(void); |