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

28 lines
377 B
C++

#pragma once
#include "PassiveAggressiveMonster.h"
class cSnowGolem:
public cPassiveAggressiveMonster
{
using Super = cPassiveAggressiveMonster;
public:
cSnowGolem();
CLASS_PROTODEF(cSnowGolem)
virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;
} ;