Fixed XML Parser not parsing empty XML sheets 100% correctly.

This commit is contained in:
2023-05-20 22:53:53 -07:00
parent c69352cf9c
commit b61c1fc5ba
10 changed files with 21 additions and 106 deletions

View File

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