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

                               



                  
                          



                                                             
  
#pragma once
#include "../Entity.h"
#include "../../Mobs/Monster.h"

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