Dicewars-Siedler/src/game/DicewarsApp.cpp
Sebastian Böckelmann d84995bd29
All checks were successful
Tests / test (push) Successful in 2m34s
ADD: Integrate SceneManager into Application, derive scene for LoadingScreen, closes #17
2026-04-21 17:33:48 +02:00

13 lines
260 B
C++

//
// Created by sebastian on 23.12.25.
//
#include "DicewarsApp.h"
#include "../engine/core/scenes/SceneManager.h"
#include "../engine/core/scenes/SplashScreen.h"
DicewarsApp::DicewarsApp() {
sceneManager->switchTo(std::make_unique<SplashScreen>());
}