summaryrefslogblamecommitdiffstats
path: root/src/Mobs/Components/AIComponent.h
blob: d8bfe7900962583f686e008e6fa9ad894d209343 (plain) (tree)
1
2
3
4
5
6
7
8
9
            
 
               

              



                  
                          
       
                                          



                                                         
#pragma once

class cMonster;
class cEntity;
class cChunk;

class cAIComponent
{
protected:
	cMonster * m_Self;
public:
	cAIComponent(cMonster * a_Entity);
	virtual ~cAIComponent(){}
	
	virtual void Tick(float a_Dt, cChunk & a_Chunk){}
};