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