This commit is contained in:
2023-01-06 21:01:06 -08:00
parent c29eb885c8
commit 1d024aaad4
22 changed files with 194 additions and 191 deletions

View File

@ -5,7 +5,7 @@
#include "DawnGame.hpp"
#include "scenes/Scene_1_1.hpp"
#include "scenes/PrefabTestingScene.hpp"
#include "scenes/TestScene.hpp"
using namespace Dawn;
@ -23,7 +23,7 @@ int32_t DawnGame::init() {
this->localeManager.init();
this->renderManager.init();
this->scene = new PrefabTestingScene(this);
this->scene = new TestScene(this);
return DAWN_GAME_INIT_RESULT_SUCCESS;
}