fixed windows build
This commit is contained in:
parent
794fa5bba0
commit
5aff6f6326
13 changed files with 33 additions and 27 deletions
|
@ -10,7 +10,7 @@
|
|||
class MoveComponent
|
||||
{
|
||||
public:
|
||||
MoveComponent(std::weak_ptr<Actor> actor): m_Actor(actor), m_Speed(50) {}; //TODO: speed
|
||||
MoveComponent(std::weak_ptr<Actor> actor) : m_Actor(actor), m_Direction(NormalizedDirection()), m_Speed(50), m_ForcedDistance(0) {}; //TODO: speed
|
||||
void Update(float deltaTime);
|
||||
void SetDirection(const NormalizedDirection & direction);
|
||||
void SetSpeed(float speed);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue