13 lines
318 B
C++
13 lines
318 B
C++
// Copyright (c) 2023 Dominic Masters
|
|
//
|
|
// This software is released under the MIT License.
|
|
// https://opensource.org/licenses/MIT
|
|
|
|
#include "game/DawnGame.hpp"
|
|
#include "scenes/HelloWorldScene.hpp"
|
|
|
|
using namespace Dawn;
|
|
|
|
Scene * Dawn::dawnGameGetInitialScene(DawnGame *game) {
|
|
return new HelloWorldScene(game);
|
|
} |