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

28 lines
377 B
C
Raw Permalink Normal View History

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