summaryrefslogblamecommitdiffstats
path: root/source/Mobs/Wolf.h
blob: 7247f823c397ef0fca2b74a953c75722e35a315c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
 

            
                                     
 





                                        
 

                                                
       



                                                                    





                              
 

#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);
} ;