aebe130299
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1095 0a769ca7-a7f5-676a-18bf-c427514a06d6
27 lines
269 B
C++
27 lines
269 B
C++
|
|
#pragma once
|
|
|
|
#include "PassiveAggressiveMonster.h"
|
|
|
|
|
|
|
|
|
|
|
|
class cWolf :
|
|
public cPassiveAggressiveMonster
|
|
{
|
|
typedef cPassiveAggressiveMonster super;
|
|
|
|
public:
|
|
cWolf(void) :
|
|
super("Wolf", 95, "mob.wolf.hurt", "mob.wolf.death")
|
|
{
|
|
}
|
|
|
|
CLASS_PROTODEF(cWolf);
|
|
} ;
|
|
|
|
|
|
|
|
|