Keep on improving fonts.

This commit is contained in:
2023-01-24 14:49:31 -08:00
parent 45a0a2c158
commit 4d6cffbcfe
10 changed files with 148 additions and 9 deletions

View File

@ -6,6 +6,7 @@
#include "DawnGame.hpp"
#include "scenes/SubSceneRendererScene.hpp"
#include "scenes/Scene_1.hpp"
#include "scenes/TestUIScene.hpp"
using namespace Dawn;
@ -25,7 +26,7 @@ int32_t DawnGame::init() {
this->renderManager.init();
this->audioManager.init();
this->scene = new Scene_1(this);
this->scene = new TestUIScene(this);
return DAWN_GAME_INIT_RESULT_SUCCESS;
}