Subscenes

This commit is contained in:
2023-01-14 22:06:35 -08:00
parent 15e7efb7f3
commit 0558b3bb25
35 changed files with 733 additions and 116 deletions

View File

@ -4,8 +4,7 @@
// https://opensource.org/licenses/MIT
#include "DawnGame.hpp"
#include "scenes/Scene_1_1.hpp"
#include "scenes/TestScene.hpp"
#include "scenes/SubsceneTest.hpp"
using namespace Dawn;
@ -23,7 +22,7 @@ int32_t DawnGame::init() {
this->localeManager.init();
this->renderManager.init();
this->scene = new TestScene(this);
this->scene = new SubsceneTest(this);
return DAWN_GAME_INIT_RESULT_SUCCESS;
}