This commit is contained in:
2023-01-06 21:01:06 -08:00
parent d13984dddc
commit d6b7895cab
21 changed files with 190 additions and 190 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;
}