Redid the VN Scene Parser

This commit is contained in:
2023-02-12 21:38:12 -08:00
parent 36926b3e59
commit 13eca65974
35 changed files with 953 additions and 519 deletions

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT
#include "DawnGame.hpp"
#include "scenes/vnscene_1.hpp"
#include "scenes/Scene_1.hpp"
using namespace Dawn;
@ -24,7 +24,7 @@ int32_t DawnGame::init() {
this->renderManager.init();
this->audioManager.init();
this->scene = new vnscene_1(this);
this->scene = new Scene_1(this);
return DAWN_GAME_INIT_RESULT_SUCCESS;
}