Various changes

This commit is contained in:
2023-01-29 15:13:24 -08:00
parent a06d24aad8
commit 9c7c0401a6
42 changed files with 410 additions and 447 deletions

View File

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