diff options
author | Mattes D <github@xoft.cz> | 2014-04-28 12:32:02 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-04-28 12:32:02 +0200 |
commit | c0630516459ec59139b60173e0582900115a5614 (patch) | |
tree | 46a3beef2f57ea2ff59bd487f98e82d18f406935 /src/Entities/GhastFireballEntity.h | |
parent | Fixed warnings. (diff) | |
parent | Fixed projectile source filenames, indentations (diff) | |
download | cuberite-c0630516459ec59139b60173e0582900115a5614.tar cuberite-c0630516459ec59139b60173e0582900115a5614.tar.gz cuberite-c0630516459ec59139b60173e0582900115a5614.tar.bz2 cuberite-c0630516459ec59139b60173e0582900115a5614.tar.lz cuberite-c0630516459ec59139b60173e0582900115a5614.tar.xz cuberite-c0630516459ec59139b60173e0582900115a5614.tar.zst cuberite-c0630516459ec59139b60173e0582900115a5614.zip |
Diffstat (limited to 'src/Entities/GhastFireballEntity.h')
-rw-r--r-- | src/Entities/GhastFireballEntity.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/Entities/GhastFireballEntity.h b/src/Entities/GhastFireballEntity.h new file mode 100644 index 000000000..9e4572c78 --- /dev/null +++ b/src/Entities/GhastFireballEntity.h @@ -0,0 +1,38 @@ +// +// GhastFireballEntity.h +// + +#pragma once + +#include "ProjectileEntity.h" + + + + + +// tolua_begin + +class cGhastFireballEntity : + public cProjectileEntity +{ + typedef cProjectileEntity super; + +public: + + // tolua_end + + CLASS_PROTODEF(cGhastFireballEntity); + + cGhastFireballEntity(cEntity * a_Creator, double a_X, double a_Y, double a_Z, const Vector3d & a_Speed); + +protected: + + void Explode(int a_BlockX, int a_BlockY, int a_BlockZ); + + // cProjectileEntity overrides: + virtual void OnHitSolidBlock(const Vector3d & a_HitPos, eBlockFace a_HitFace) override; + virtual void OnHitEntity(cEntity & a_EntityHit, const Vector3d & a_HitPos) override; + + // TODO: Deflecting the fireballs by arrow- or sword- hits + +} ; // tolua_export |