summaryrefslogtreecommitdiffstats
path: root/src/Mobs/NewOcelot.h
blob: c1eb3b9e37a7c898fe14a0d6bf6c4deece05d318 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

#pragma once

#include "NewMonster.h"





class cNewOcelot :
	public cNewMonster
{
	typedef cNewMonster super;
	
public:
	cNewOcelot(void) :
		super("Ocelot", mtOcelot, "mob.cat.hitt", "mob.cat.hitt", 0.6, 0.8)
	{
	}

	CLASS_PROTODEF(cNewOcelot)
} ;