From 88d53cab4e10aed6cdae443aa66136add99562bb Mon Sep 17 00:00:00 2001 From: Aki Date: Sun, 24 Apr 2022 23:51:27 +0200 Subject: Added some colorful stuff and interface --- TestStage.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'TestStage.cpp') diff --git a/TestStage.cpp b/TestStage.cpp index e6ff74a..7dd5779 100644 --- a/TestStage.cpp +++ b/TestStage.cpp @@ -1,8 +1,13 @@ #include "TestStage.h" +#include + #include "EnemyFactory.h" +static constexpr Color DEEPSPACE {3, 5, 22, 255}; + + TestStage::TestStage() : m_player {}, m_const {} @@ -34,6 +39,7 @@ TestStage::update(const float dt) void TestStage::draw() { + ClearBackground(DEEPSPACE); m_const.draw(); for (auto& enemy : m_enemies) enemy.draw(); -- cgit v1.1