summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Wolf.cpp
blob: c3ff4b2eb063fe0f59025d92e63fd264540a71e7 (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

#include "Globals.h"  // NOTE: MSVC stupidness requires this to be the same across all modules

#include "Wolf.h"
#include "../World.h"
#include "../Entities/Player.h"
#include "../Items/ItemHandler.h"





cWolf::cWolf(void) :
	super("Wolf", mtWolf, "mob.wolf.hurt", "mob.wolf.death", 0.6, 0.8),
	m_IsSitting(false),
	m_IsBegging(false),
	m_IsAngry(false),
	m_CollarColor(14)
{
}