Dawn/src/dawnrpg/game/GameInit.cpp
2024-05-27 11:53:00 -05:00

13 lines
303 B
C++

// Copyright (c) 2023 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#include "game/GameInit.hpp"
#include "scene/SceneList.hpp"
using namespace Dawn;
std::function<void(Scene&)> GameInit::getInitialScene() {
return helloWorldScene;
}