13 lines
303 B
C++
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;
|
|
} |