About to break VN Scene Parser

This commit is contained in:
2023-05-17 21:52:24 -07:00
parent 1e04811c20
commit fc303b3b47
13 changed files with 37 additions and 18 deletions

View File

@@ -5,11 +5,11 @@
#include "game/DawnGame.hpp"
#include "scenes/HelloWorldScene.hpp"
#include "scenes/TestScene.hpp"
#include "scenes/ExtendedScene.hpp"
using namespace Dawn;
Scene * Dawn::dawnGameGetInitialScene(DawnGame *game) {
// return new HelloWorldScene(game);
return new TestScene(game);
return new ExtendedScene(game);
}