2014-10-21 15:25:52 -04:00
|
|
|
|
|
|
|
// GhastFireballEntity.h
|
|
|
|
|
|
|
|
// Declares the cGhastFireballEntity class representing the ghast fireball in flight.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-26 20:41:07 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "ProjectileEntity.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-26 20:58:06 -04:00
|
|
|
// tolua_begin
|
|
|
|
|
2014-04-26 20:41:07 -04:00
|
|
|
class cGhastFireballEntity :
|
2014-04-27 20:03:06 -04:00
|
|
|
public cProjectileEntity
|
2014-04-26 20:41:07 -04:00
|
|
|
{
|
2019-09-29 08:59:24 -04:00
|
|
|
// tolua_end
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2020-04-13 12:38:06 -04:00
|
|
|
using Super = cProjectileEntity;
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2019-09-29 08:59:24 -04:00
|
|
|
public: // tolua_export
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-07-22 18:36:13 -04:00
|
|
|
CLASS_PROTODEF(cGhastFireballEntity)
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2019-09-29 08:59:24 -04:00
|
|
|
cGhastFireballEntity(cEntity * a_Creator, Vector3d a_Pos, Vector3d a_Speed);
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-04-26 20:41:07 -04:00
|
|
|
protected:
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2015-05-24 07:56:56 -04:00
|
|
|
void Explode(Vector3i a_Block);
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-04-26 20:41:07 -04:00
|
|
|
// cProjectileEntity overrides:
|
2017-09-07 04:25:34 -04:00
|
|
|
virtual void OnHitSolidBlock(Vector3d a_HitPos, eBlockFace a_HitFace) override;
|
|
|
|
virtual void OnHitEntity(cEntity & a_EntityHit, Vector3d a_HitPos) override;
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-04-26 20:41:07 -04:00
|
|
|
// TODO: Deflecting the fireballs by arrow- or sword- hits
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-07-17 16:15:34 -04:00
|
|
|
} ; // tolua_export
|
2014-10-21 15:25:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|