Prepping for ronin

This commit is contained in:
2023-07-02 02:59:08 -07:00
parent 29048234a7
commit ff360b9983
48 changed files with 256 additions and 7 deletions

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);
}