diff options
author | gaurav sehgal <gauravsehgal93@gmail.com> | 2016-07-07 09:55:07 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2016-07-07 09:55:07 +0200 |
commit | 97b9422a3e49af9716914001ae432ecdf1818fb0 (patch) | |
tree | 9a574aa898ef583978f56cee926e66cffdfb5a4c /src/Blocks/BroadcastInterface.h | |
parent | Added Server OS section pr template (#3254) (diff) | |
download | cuberite-97b9422a3e49af9716914001ae432ecdf1818fb0.tar cuberite-97b9422a3e49af9716914001ae432ecdf1818fb0.tar.gz cuberite-97b9422a3e49af9716914001ae432ecdf1818fb0.tar.bz2 cuberite-97b9422a3e49af9716914001ae432ecdf1818fb0.tar.lz cuberite-97b9422a3e49af9716914001ae432ecdf1818fb0.tar.xz cuberite-97b9422a3e49af9716914001ae432ecdf1818fb0.tar.zst cuberite-97b9422a3e49af9716914001ae432ecdf1818fb0.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Blocks/BroadcastInterface.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Blocks/BroadcastInterface.h b/src/Blocks/BroadcastInterface.h index ab101e1f6..e813be2a5 100644 --- a/src/Blocks/BroadcastInterface.h +++ b/src/Blocks/BroadcastInterface.h @@ -1,6 +1,12 @@ #pragma once +#include "EffectID.h" + + + + + class cBroadcastInterface { public: @@ -9,4 +15,5 @@ public: virtual void BroadcastUseBed (const cEntity & a_Entity, int a_BlockX, int a_BlockY, int a_BlockZ) = 0; virtual void BroadcastSoundEffect(const AString & a_SoundName, double a_X, double a_Y, double a_Z, float a_Volume, float a_Pitch, const cClientHandle * a_Exclude = nullptr) = 0; virtual void BroadcastEntityAnimation(const cEntity & a_Entity, char a_Animation, const cClientHandle * a_Exclude = nullptr) = 0; + virtual void BroadcastSoundParticleEffect(const EffectID a_EffectID, int a_SrcX, int a_SrcY, int a_SrcZ, int a_Data, const cClientHandle * a_Exclude = nullptr) = 0; }; |