2014-10-21 21:25:52 +02:00
|
|
|
|
|
|
|
|
// FireChargeEntity.h
|
|
|
|
|
|
|
|
|
|
// Declares the cFireChargeEntity representing the fire charge shot by the blaze
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-26 17:35:31 -07:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "ProjectileEntity.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-26 17:58:06 -07:00
|
|
|
// tolua_begin
|
|
|
|
|
|
2014-04-26 17:35:31 -07:00
|
|
|
class cFireChargeEntity :
|
2014-04-27 17:03:06 -07:00
|
|
|
public cProjectileEntity
|
2014-04-26 17:35:31 -07:00
|
|
|
{
|
2019-09-29 14:59:24 +02:00
|
|
|
// tolua_end
|
2016-02-05 23:45:45 +02:00
|
|
|
|
2020-04-13 18:38:06 +02:00
|
|
|
using Super = cProjectileEntity;
|
2016-02-05 23:45:45 +02:00
|
|
|
|
2019-09-29 14:59:24 +02:00
|
|
|
public: // tolua_export
|
2016-02-05 23:45:45 +02:00
|
|
|
|
2014-07-22 15:36:13 -07:00
|
|
|
CLASS_PROTODEF(cFireChargeEntity)
|
2016-02-05 23:45:45 +02:00
|
|
|
|
2019-09-29 14:59:24 +02:00
|
|
|
cFireChargeEntity(cEntity * a_Creator, Vector3d a_Pos, Vector3d a_Speed);
|
2016-02-05 23:45:45 +02:00
|
|
|
|
2014-04-26 17:35:31 -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:35:31 -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-07-17 22:15:34 +02:00
|
|
|
} ; // tolua_export
|
2014-10-21 21:25:52 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|