1
0
cuberite-2a/src/Entities/GhastFireballEntity.h

48 lines
770 B
C
Raw Normal View History

// GhastFireballEntity.h
// Declares the cGhastFireballEntity class representing the ghast fireball in flight.
#pragma once
#include "ProjectileEntity.h"
2014-04-26 20:58:06 -04:00
// tolua_begin
class cGhastFireballEntity :
public cProjectileEntity
{
typedef cProjectileEntity super;
2016-02-05 16:45:45 -05:00
public:
2016-02-05 16:45:45 -05:00
// tolua_end
2016-02-05 16:45:45 -05:00
CLASS_PROTODEF(cGhastFireballEntity)
2016-02-05 16:45:45 -05:00
cGhastFireballEntity(cEntity * a_Creator, double a_X, double a_Y, double a_Z, const Vector3d & a_Speed);
2016-02-05 16:45:45 -05: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
// cProjectileEntity overrides:
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
// TODO: Deflecting the fireballs by arrow- or sword- hits
2016-02-05 16:45:45 -05:00
} ; // tolua_export