From add251b4ea37b57cf926b07e5e04d9b065f82a2c Mon Sep 17 00:00:00 2001 From: Aki Date: Mon, 18 Apr 2022 20:38:16 +0200 Subject: Playing around with enemies, added dumb pos manipulation --- TestStage.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'TestStage.h') diff --git a/TestStage.h b/TestStage.h index c5287a5..0e90ab6 100644 --- a/TestStage.h +++ b/TestStage.h @@ -1,5 +1,7 @@ #pragma once +#include + #include "ConstantVelocity.h" #include "Enemy.h" #include "Player.h" @@ -16,5 +18,5 @@ public: private: Player m_player; ConstantVelocitySystem m_const; - Enemy m_enemy; + std::vector m_enemies; }; -- cgit v1.1