b29af701b9
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1096 0a769ca7-a7f5-676a-18bf-c427514a06d6
27 lines
335 B
C++
27 lines
335 B
C++
|
|
#pragma once
|
|
|
|
#include "AggressiveMonster.h"
|
|
|
|
|
|
|
|
|
|
|
|
class cSkeleton :
|
|
public cAggressiveMonster
|
|
{
|
|
typedef cAggressiveMonster super;
|
|
|
|
public:
|
|
cSkeleton();
|
|
|
|
CLASS_PROTODEF(cSkeleton);
|
|
|
|
virtual void Tick(float a_Dt, MTRand & a_TickRandom) override;
|
|
virtual void GetDrops(cItems & a_Drops, cPawn * a_Killer = NULL) override;
|
|
} ;
|
|
|
|
|
|
|
|
|