summaryrefslogtreecommitdiffstats
path: root/source/Mobs/Ocelot.h
blob: 76ee6815ed266db1fb83c2069eb6a5356e16993f (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 "PassiveMonster.h"





class cOcelot :
	public cPassiveMonster
{
	typedef cPassiveMonster super;
	
public:
	cOcelot(void) :
		super("Ocelot", 98, "mob.cat.hitt", "mob.cat.hitt")
	{
	}

	CLASS_PROTODEF(cOcelot);
} ;