2014-10-21 15:25:52 -04:00
|
|
|
|
|
|
|
// ExpBottleEntity.h
|
|
|
|
|
|
|
|
// Declares the cExpBottleEntity class representing the thrown exp bottle
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-26 20:19:45 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "ProjectileEntity.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-26 20:58:06 -04:00
|
|
|
// tolua_begin
|
|
|
|
|
2014-04-26 20:19:45 -04:00
|
|
|
class cExpBottleEntity :
|
2014-04-27 20:03:06 -04:00
|
|
|
public cProjectileEntity
|
2014-04-26 20:19:45 -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(cExpBottleEntity)
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2017-09-07 04:25:34 -04:00
|
|
|
cExpBottleEntity(cEntity * a_Creator, Vector3d a_Pos, Vector3d a_Speed);
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-04-26 20:19:45 -04:00
|
|
|
protected:
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-04-26 20:19:45 -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;
|
2014-09-23 03:12:28 -04:00
|
|
|
|
|
|
|
/** Breaks the bottle, fires its particle effects and sounds
|
|
|
|
@param a_HitPos The position where the bottle will break */
|
2017-09-07 04:25:34 -04:00
|
|
|
void Break(Vector3d a_HitPos);
|
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|