summaryrefslogtreecommitdiffstats
path: root/source/Mobs/Wolf.h
blob: 7247f823c397ef0fca2b74a953c75722e35a315c (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 "PassiveAggressiveMonster.h"





class cWolf :
	public cPassiveAggressiveMonster
{
	typedef cPassiveAggressiveMonster super;
	
public:
	cWolf(void) :
		super("Wolf", 95, "mob.wolf.hurt", "mob.wolf.death")
	{
	}

	CLASS_PROTODEF(cWolf);
} ;