2014-04-26 20:24:44 -04:00
|
|
|
//
|
2014-04-27 20:03:06 -04:00
|
|
|
// ThrownSnowballEntity.h
|
2014-04-26 20:24:44 -04:00
|
|
|
//
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "ProjectileEntity.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-26 20:58:06 -04:00
|
|
|
// tolua_begin
|
|
|
|
|
2014-04-26 20:24:44 -04:00
|
|
|
class cThrownSnowballEntity :
|
2014-04-27 20:03:06 -04:00
|
|
|
public cProjectileEntity
|
2014-04-26 20:24:44 -04:00
|
|
|
{
|
|
|
|
typedef cProjectileEntity super;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
// tolua_end
|
|
|
|
|
|
|
|
CLASS_PROTODEF(cThrownSnowballEntity);
|
|
|
|
|
|
|
|
cThrownSnowballEntity(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;
|
|
|
|
virtual void OnHitEntity (cEntity & a_EntityHit, const Vector3d & a_HitPos) override;
|
|
|
|
|
2014-04-27 12:42:31 -04:00
|
|
|
} ; // tolua_export
|