blob: 1d18f6cfeee823ccc815ff8183ce2362046545a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#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;
virtual bool Attack(std::chrono::milliseconds a_Dt) override;
};
|