1
0
Fork 0
cuberite-2a/src/Entities/ThrownSnowballEntity.h

50 lines
855 B
C
Raw Normal View History

// ThrownSnowballEntity.h
// Declares the cThrownSnowballEntity representing a snowball that has been thrown
#pragma once
#include "ProjectileEntity.h"
2014-04-27 00:58:06 +00:00
// tolua_begin
class cThrownSnowballEntity :
public cProjectileEntity
{
// tolua_end
2016-02-05 21:45:45 +00:00
2020-04-13 16:38:06 +00:00
using Super = cProjectileEntity;
2016-02-05 21:45:45 +00:00
public: // tolua_export
2016-02-05 21:45:45 +00:00
CLASS_PROTODEF(cThrownSnowballEntity)
2016-02-05 21:45:45 +00:00
cThrownSnowballEntity(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;
virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
private:
/** Time in ticks to wait for the hit animation to begin before destroying */
int m_DestroyTimer;
2016-02-05 21:45:45 +00:00
} ; // tolua_export