1
0
Files
cuberite-2a/src/Mobs/Ocelot.h
2014-07-24 11:21:37 -07:00

27 lines
259 B
C++

#pragma once
#include "PassiveMonster.h"
class cOcelot :
public cPassiveMonster
{
typedef cPassiveMonster super;
public:
cOcelot(void) :
super("Ocelot", mtOcelot, "mob.cat.hitt", "mob.cat.hitt", 0.6, 0.8)
{
}
CLASS_PROTODEF(cOcelot)
} ;