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

28 lines
377 B
C
Raw Normal View History

#pragma once
2015-12-12 14:09:49 -05:00
#include "PassiveAggressiveMonster.h"
2020-04-13 12:38:06 -04:00
class cSnowGolem:
2015-12-12 14:09:49 -05:00
public cPassiveAggressiveMonster
{
2020-04-13 12:38:06 -04:00
using Super = cPassiveAggressiveMonster;
2015-12-12 14:09:49 -05:00
public:
2020-04-13 12:38:06 -04:00
cSnowGolem();
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;
} ;