#pragma once #include #include "ConstantVelocity.h" #include "Enemy.h" #include "Player.h" #include "Stage.h" class TestStage : public Stage { public: TestStage(); void update(float dt) override; void draw() override; int total_bullets() const override; private: Player m_player; ConstantVelocitySystem m_const; std::vector m_enemies; };