summaryrefslogtreecommitdiffhomepage
path: root/TestStage.h
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-04-18 20:38:16 +0200
committerAki <please@ignore.pl>2022-04-18 20:39:44 +0200
commitadd251b4ea37b57cf926b07e5e04d9b065f82a2c (patch)
tree9cecb47f168c985017971a3373de59b35f85db1a /TestStage.h
parentbbec07ab3de333649d14a64fa01f7e8ad6d56c58 (diff)
downloadbullethell2022-add251b4ea37b57cf926b07e5e04d9b065f82a2c.zip
bullethell2022-add251b4ea37b57cf926b07e5e04d9b065f82a2c.tar.gz
bullethell2022-add251b4ea37b57cf926b07e5e04d9b065f82a2c.tar.bz2
Playing around with enemies, added dumb pos manipulation
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;
};