1
0
Fork 0
cuberite-2a/source/Mobs/Ocelot.h

28 lines
372 B
C++

#pragma once
#include "PassiveMonster.h"
class cOcelot :
public cPassiveMonster
{
typedef cPassiveMonster super;
public:
cOcelot(void) :
// TODO: The size is only a guesstimate, measure in vanilla and fix the size values here
super("Ocelot", 98, "mob.cat.hitt", "mob.cat.hitt", 0.9, 0.5)
{
}
CLASS_PROTODEF(cOcelot);
} ;