1
0

snow golems are "neutral"

This commit is contained in:
Gargaj 2015-12-12 20:09:49 +01:00
parent 4a212777cb
commit e31676fe50

View File

@ -1,22 +1,22 @@
#pragma once #pragma once
#include "AggressiveMonster.h" #include "PassiveAggressiveMonster.h"
class cSnowGolem : class cSnowGolem :
public cAggressiveMonster public cPassiveAggressiveMonster
{ {
typedef cAggressiveMonster super; typedef cPassiveAggressiveMonster super;
public: public:
cSnowGolem(void); cSnowGolem(void);
CLASS_PROTODEF(cSnowGolem) CLASS_PROTODEF(cSnowGolem)
virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override; virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override; virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;
} ; } ;