Prepping for ronin

This commit is contained in:
2023-07-02 02:59:08 -07:00
parent af3b0751f7
commit 71c9f5309b

View File

@ -4,12 +4,12 @@
// https://opensource.org/licenses/MIT
#include "game/DawnGame.hpp"
#include "vnscenes/Scene1Prologue0.hpp"
#include "vnscenes/SceneTest.hpp"
#include "scenes/HelloWorldScene.hpp"
using namespace Dawn;
Scene * Dawn::dawnGameGetInitialScene(DawnGame *game) {
// return new HelloWorldScene(game);
return new Scene1Prologue0(game);
return new SceneTest(game);
}