summaryrefslogtreecommitdiffhomepage
path: root/TestStage.h
diff options
context:
space:
mode:
Diffstat (limited to 'TestStage.h')
-rw-r--r--TestStage.h4
1 files changed, 3 insertions, 1 deletions
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 <vector>
+
#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<Enemy> m_enemies;
};