Redid the VN Scene Parser

This commit is contained in:
2023-02-12 21:38:12 -08:00
parent 9436b7e98f
commit f1d13d2e45
32 changed files with 941 additions and 516 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;
}