diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-12-26 10:12:00 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-12-26 10:12:00 +0100 |
commit | 17a2c1b3886ed38b3e5e93238029476866b8c220 (patch) | |
tree | e4c4c335456e5d77cd986094ebd0fd4ebe359733 /source/Protocol/Protocol.h | |
parent | ProtoProxy: more 1.4.6 stuff, now the connection holds stable with the 1.4.6 client. (diff) | |
download | cuberite-17a2c1b3886ed38b3e5e93238029476866b8c220.tar cuberite-17a2c1b3886ed38b3e5e93238029476866b8c220.tar.gz cuberite-17a2c1b3886ed38b3e5e93238029476866b8c220.tar.bz2 cuberite-17a2c1b3886ed38b3e5e93238029476866b8c220.tar.lz cuberite-17a2c1b3886ed38b3e5e93238029476866b8c220.tar.xz cuberite-17a2c1b3886ed38b3e5e93238029476866b8c220.tar.zst cuberite-17a2c1b3886ed38b3e5e93238029476866b8c220.zip |
Diffstat (limited to 'source/Protocol/Protocol.h')
-rw-r--r-- | source/Protocol/Protocol.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/Protocol/Protocol.h b/source/Protocol/Protocol.h index 956d31955..52f3f2e3f 100644 --- a/source/Protocol/Protocol.h +++ b/source/Protocol/Protocol.h @@ -25,6 +25,7 @@ class cPickup; class cMonster;
class cChunkDataSerializer;
class cWorld;
+class cFallingBlock;
@@ -80,6 +81,7 @@ public: virtual void SendRespawn (void) = 0;
virtual void SendSoundEffect (const AString & a_SoundName, int a_SrcX, int a_SrcY, int a_SrcZ, float a_Volume, float a_Pitch) = 0; // a_Src coords are Block * 8
virtual void SendSoundParticleEffect(int a_EffectID, int a_SrcX, int a_SrcY, int a_SrcZ, int a_Data) = 0;
+ virtual void SendSpawnFallingBlock (const cFallingBlock & a_FallingBlock) = 0;
virtual void SendSpawnMob (const cMonster & a_Mob) = 0;
virtual void SendSpawnObject (const cEntity & a_Entity, char a_ObjectType, int a_ObjectData, short a_SpeedX, short a_SpeedY, short a_SpeedZ, Byte a_Yaw, Byte a_Pitch) = 0;
virtual void SendTeleportEntity (const cEntity & a_Entity) = 0;
|