aboutsummaryrefslogtreecommitdiff
path: root/game/GameScene.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'game/GameScene.cpp')
-rw-r--r--game/GameScene.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/game/GameScene.cpp b/game/GameScene.cpp
index bd12d50..24b4287 100644
--- a/game/GameScene.cpp
+++ b/game/GameScene.cpp
@@ -10,6 +10,7 @@
#include "hud/HudScript.h"
#include "hud/HudSubScene.h"
#include "hud/SpeedScript.h"
+#include "menus/endgame/EndGameSubScene.h"
#include "player/PlayerSubScene.h"
#include <cmath>
@@ -133,6 +134,10 @@ void GameScene::load_scene() {
.collision_layer = COLL_LAY_MISSILE,
});
missile.add_component<BoxCollider>(vec2(100, 100));
+
+
+ EndGameSubScene test;
+ test.create(*this);
}
string GameScene::get_name() const { return "scene1"; }