diff options
author | Mattes D <github@xoft.cz> | 2014-03-16 21:47:34 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-03-16 21:47:34 +0100 |
commit | 4ec402e6f9431db61cffe8f9f5c964bbbd14929d (patch) | |
tree | 13a884198c3a9bffb34634aff2d91042655413d9 /src/Blocks/BroadcastInterface.h | |
parent | Merge pull request #809 from Howaner/BlockEntitys (diff) | |
parent | Fixed VERIFY (diff) | |
download | cuberite-4ec402e6f9431db61cffe8f9f5c964bbbd14929d.tar cuberite-4ec402e6f9431db61cffe8f9f5c964bbbd14929d.tar.gz cuberite-4ec402e6f9431db61cffe8f9f5c964bbbd14929d.tar.bz2 cuberite-4ec402e6f9431db61cffe8f9f5c964bbbd14929d.tar.lz cuberite-4ec402e6f9431db61cffe8f9f5c964bbbd14929d.tar.xz cuberite-4ec402e6f9431db61cffe8f9f5c964bbbd14929d.tar.zst cuberite-4ec402e6f9431db61cffe8f9f5c964bbbd14929d.zip |
Diffstat (limited to 'src/Blocks/BroadcastInterface.h')
-rw-r--r-- | src/Blocks/BroadcastInterface.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Blocks/BroadcastInterface.h b/src/Blocks/BroadcastInterface.h index f6ccd580b..01966ffbd 100644 --- a/src/Blocks/BroadcastInterface.h +++ b/src/Blocks/BroadcastInterface.h @@ -5,6 +5,7 @@ class cBroadcastInterface { 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, int a_SrcX, int a_SrcY, int a_SrcZ, float a_Volume, float a_Pitch, const cClientHandle * a_Exclude = NULL) = 0; + virtual void BroadcastUseBed (const cEntity & a_Entity, int a_BlockX, int a_BlockY, int a_BlockZ ) = 0; + virtual void BroadcastSoundEffect(const AString & a_SoundName, int a_SrcX, int a_SrcY, int a_SrcZ, float a_Volume, float a_Pitch, const cClientHandle * a_Exclude = NULL) = 0; + virtual void BroadcastEntityAnimation(const cEntity & a_Entity, char a_Animation, const cClientHandle * a_Exclude = NULL) = 0; }; |