diff options
Diffstat (limited to 'TitleScreen.cpp')
-rw-r--r-- | TitleScreen.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/TitleScreen.cpp b/TitleScreen.cpp index 3994fe9..0bf52f8 100644 --- a/TitleScreen.cpp +++ b/TitleScreen.cpp @@ -7,6 +7,7 @@ #include "Game.h" #include "GameScreen.h" #include "Globals.h" +#include "TestStage.h" static constexpr const char* TITLE {"Generic Bullet HELL"}; @@ -31,7 +32,7 @@ TitleScreen::update(const float dt) if (m_blink > 2 * INTERVAL) m_blink -= 2 * INTERVAL; if (IsKeyPressed(KEY_SPACE)) - g_game.set(std::make_unique<GameScreen>()); + g_game.set(std::make_unique<GameScreen>(std::make_unique<TestStage>())); } |