aebe130299
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1095 0a769ca7-a7f5-676a-18bf-c427514a06d6
27 lines
270 B
C++
27 lines
270 B
C++
|
|
#pragma once
|
|
|
|
#include "PassiveMonster.h"
|
|
|
|
|
|
|
|
|
|
|
|
class cOcelot :
|
|
public cPassiveMonster
|
|
{
|
|
typedef cPassiveMonster super;
|
|
|
|
public:
|
|
cOcelot(void) :
|
|
super("Ocelot", 98, "mob.cat.hitt", "mob.cat.hitt")
|
|
{
|
|
}
|
|
|
|
CLASS_PROTODEF(cOcelot);
|
|
} ;
|
|
|
|
|
|
|
|
|