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

27 lines
381 B
C
Raw Normal View History

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