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

50 lines
877 B
C
Raw Normal View History

// ExpBottleEntity.h
// Declares the cExpBottleEntity class representing the thrown exp bottle
#pragma once
#include "ProjectileEntity.h"
2014-04-27 00:58:06 +00:00
// tolua_begin
class cExpBottleEntity :
public cProjectileEntity
{
typedef cProjectileEntity super;
2016-02-05 21:45:45 +00:00
public:
2016-02-05 21:45:45 +00:00
// tolua_end
2016-02-05 21:45:45 +00:00
CLASS_PROTODEF(cExpBottleEntity)
2016-02-05 21:45:45 +00:00
cExpBottleEntity(cEntity * a_Creator, double a_X, double a_Y, double a_Z, Vector3d a_Speed);
cExpBottleEntity(cEntity * a_Creator, Vector3d a_Pos, Vector3d a_Speed);
2016-02-05 21:45:45 +00:00
protected:
2016-02-05 21:45:45 +00:00
// cProjectileEntity overrides:
virtual void OnHitSolidBlock(Vector3d a_HitPos, eBlockFace a_HitFace) override;
virtual void OnHitEntity (cEntity & a_EntityHit, Vector3d a_HitPos) override;
/** Breaks the bottle, fires its particle effects and sounds
@param a_HitPos The position where the bottle will break */
void Break(Vector3d a_HitPos);
2016-02-05 21:45:45 +00:00
}; // tolua_export