summaryrefslogtreecommitdiffhomepage
path: root/TestStage.h
diff options
context:
space:
mode:
Diffstat (limited to 'TestStage.h')
-rw-r--r--TestStage.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/TestStage.h b/TestStage.h
new file mode 100644
index 0000000..10164cd
--- /dev/null
+++ b/TestStage.h
@@ -0,0 +1,20 @@
+#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;
+};