From e51044a8872a05313fa92cad15eedf1f93f26aee Mon Sep 17 00:00:00 2001 From: Aki Date: Mon, 25 Apr 2022 02:02:11 +0200 Subject: Moved flash to own class and used it as transition to death screen --- TestStage.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'TestStage.h') diff --git a/TestStage.h b/TestStage.h index 3398a89..44a1967 100644 --- a/TestStage.h +++ b/TestStage.h @@ -4,6 +4,7 @@ #include "ConstantVelocity.h" #include "Enemy.h" +#include "Flash.h" #include "Player.h" #include "Stage.h" @@ -17,5 +18,5 @@ public: private: ConstantVelocitySystem m_const; std::vector m_enemies; - float m_flash; + Flash m_flash; }; -- cgit v1.1