summaryrefslogblamecommitdiffstats
path: root/src/Entities/Compoments/MovementComponent.h
blob: a9896c3b0d990d9af1ea91e3efdb7c9c7681b285 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                   
  
#pragma once

#include "../Entity.h"

class cMovementComponent
{
protected:
	cEntity * m_Self;
public:
	cMovementComponent(cEntity * a_Entity) : m_Self(a_Entity){}

};