Files
cuberite-2a/source/Mobs/Ocelot.h
T

27 lines
254 B
C++
Raw Normal View History

2013-07-29 12:13:03 +01:00
#pragma once
#include "PassiveMonster.h"
class cOcelot :
public cPassiveMonster
{
typedef cPassiveMonster super;
public:
cOcelot(void) :
2013-10-11 00:41:54 +01:00
super("Ocelot", 98, "mob.cat.hitt", "mob.cat.hitt", 0.6, 0.8)
2013-07-29 12:13:03 +01:00
{
}
CLASS_PROTODEF(cOcelot);
} ;