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
|
|
|
{
|
|
|
|
typedef cProjectileEntity super;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
// tolua_end
|
|
|
|
|
2014-07-22 18:36:13 -04:00
|
|
|
CLASS_PROTODEF(cExpBottleEntity)
|
2014-04-26 20:19:45 -04:00
|
|
|
|
|
|
|
cExpBottleEntity(cEntity * a_Creator, double a_X, double a_Y, double a_Z, const Vector3d & a_Speed);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
// cProjectileEntity overrides:
|
|
|
|
virtual void OnHitSolidBlock(const Vector3d & a_HitPos, eBlockFace a_HitFace) override;
|
2014-09-23 03:12:28 -04:00
|
|
|
virtual void OnHitEntity (cEntity & a_EntityHit, const Vector3d & a_HitPos) override;
|
|
|
|
|
|
|
|
/** Breaks the bottle, fires its particle effects and sounds
|
|
|
|
@param a_HitPos The position where the bottle will break */
|
2014-10-21 15:25:52 -04:00
|
|
|
void Break(const Vector3d & a_HitPos);
|
2014-04-26 20:19:45 -04:00
|
|
|
|
2014-07-17 16:15:34 -04:00
|
|
|
}; // tolua_export
|
2014-10-21 15:25:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|