- refactored many things in the Monster system git-svn-id: http://mc-server.googlecode.com/svn/trunk@112 0a769ca7-a7f5-676a-18bf-c427514a06d6
		
			
				
	
	
		
			17 lines
		
	
	
		
			277 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			277 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include "cAggressiveMonster.h"
 | 
						|
 | 
						|
class cSkeleton : public cAggressiveMonster
 | 
						|
{
 | 
						|
public:
 | 
						|
	cSkeleton();
 | 
						|
	~cSkeleton();
 | 
						|
 | 
						|
	virtual bool IsA( const char* a_EntityType );
 | 
						|
 | 
						|
	virtual void Tick(float a_Dt);
 | 
						|
	virtual void KilledBy( cEntity* a_Killer );
 | 
						|
	
 | 
						|
};
 |