summaryrefslogtreecommitdiffhomepage
path: root/TestStage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TestStage.cpp')
-rw-r--r--TestStage.cpp6
1 files changed, 6 insertions, 0 deletions
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 <raylib.h>
+
#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();