diff options
Diffstat (limited to 'source/Protocol132.h')
-rw-r--r-- | source/Protocol132.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/Protocol132.h b/source/Protocol132.h index cca91c44b..3f21d4841 100644 --- a/source/Protocol132.h +++ b/source/Protocol132.h @@ -38,9 +38,10 @@ public: virtual void SendDestroyEntity(const cEntity & a_Entity) override;
virtual void SendLogin (const cPlayer & a_Player, const cWorld & a_World) override;
virtual void SendPlayerSpawn (const cPlayer & a_Player) override;
+ virtual void SendSoundEffect (const AString & a_SoundName, int a_SrcX, int a_SrcY, int a_SrcZ, float a_Volume, float a_Pitch) override; // a_Src coords are Block * 8
virtual void SendSpawnMob (const cMonster & a_Mob) override;
virtual void SendUnloadChunk (int a_ChunkX, int a_ChunkZ) override;
-
+
virtual AString GetAuthServerID(void) override;
// DEBUG:
|