1
0
cuberite-2a/src/Mobs/SnowGolem.h

27 lines
381 B
C
Raw Normal View History

#pragma once
2015-12-12 19:09:49 +00:00
#include "PassiveAggressiveMonster.h"
class cSnowGolem :
2015-12-12 19:09:49 +00:00
public cPassiveAggressiveMonster
{
2015-12-12 19:09:49 +00:00
typedef cPassiveAggressiveMonster super;
public:
cSnowGolem(void);
CLASS_PROTODEF(cSnowGolem)
2015-12-12 19:09:49 +00:00
virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
2014-10-20 20:55:07 +00:00
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;
} ;