summaryrefslogblamecommitdiffstats
path: root/src/Entities/Compoments/AIComponent.h
blob: 1659e230448e67a91f2920a993e78410fab64423 (plain) (tree)
1
2
3
4
5
6
7
8
9
            

                      



                  
                         
       
                                                             

                                                         
 
  
#pragma once

#include "../Entity.h"

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

};