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

44 lines
687 B
C
Raw Normal View History

// WitherSkullEntity.h
// Declares the cWitherSkullEntity class representing the entity used by both blue and black wither skulls
#pragma once
#include "ProjectileEntity.h"
// tolua_begin
class cWitherSkullEntity :
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(cWitherSkullEntity)
2016-02-05 21:45:45 +00:00
cWitherSkullEntity(cEntity * a_Creator, double a_X, double a_Y, double a_Z, const 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;
2016-02-05 21:45:45 +00:00
} ; // tolua_export