13 lines
260 B
C++
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>());
|
|
}
|