1
0
cuberite-2a/source/Mobs/Ocelot.h
2012-12-22 09:39:13 +00:00

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);
} ;