2014-10-21 15:25:52 -04:00
|
|
|
|
|
|
|
// FireChargeEntity.h
|
|
|
|
|
|
|
|
// Declares the cFireChargeEntity representing the fire charge shot by the blaze
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-26 20:35:31 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "ProjectileEntity.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-26 20:58:06 -04:00
|
|
|
// tolua_begin
|
|
|
|
|
2014-04-26 20:35:31 -04:00
|
|
|
class cFireChargeEntity :
|
2014-04-27 20:03:06 -04:00
|
|
|
public cProjectileEntity
|
2014-04-26 20:35:31 -04:00
|
|
|
{
|
|
|
|
typedef cProjectileEntity super;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
// tolua_end
|
|
|
|
|
2014-07-22 18:36:13 -04:00
|
|
|
CLASS_PROTODEF(cFireChargeEntity)
|
2014-04-26 20:35:31 -04:00
|
|
|
|
|
|
|
cFireChargeEntity(cEntity * a_Creator, double a_X, double a_Y, double a_Z, const Vector3d & a_Speed);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2015-05-24 07:56:56 -04:00
|
|
|
void Explode(Vector3i a_Block);
|
2014-04-26 20:35:31 -04:00
|
|
|
|
|
|
|
// cProjectileEntity overrides:
|
|
|
|
virtual void OnHitSolidBlock(const Vector3d & a_HitPos, eBlockFace a_HitFace) override;
|
|
|
|
virtual void OnHitEntity(cEntity & a_EntityHit, const Vector3d & a_HitPos) override;
|
|
|
|
|
2014-07-17 16:15:34 -04:00
|
|
|
} ; // tolua_export
|
2014-10-21 15:25:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|