#pragma once #include "ConstantVelocity.h" #include "ExampleGenerator.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; ExampleGenerator m_generator; };