Started work on prefabs.

This commit is contained in:
2022-12-19 22:41:16 -08:00
parent 2b11a4365f
commit abb20997aa
26 changed files with 404 additions and 19 deletions

View File

@ -4,13 +4,10 @@
// https://opensource.org/licenses/MIT
#include "DawnGame.hpp"
#include "scenes/TestScene.hpp"
#include "scenes/Scene_1_1.hpp"
using namespace Dawn;
TrueTypeAsset *assetFont;
TextureAsset *assetTexture;
DawnGame::DawnGame(DawnHost *host) :
host(host),
renderManager(this),
@ -25,7 +22,7 @@ int32_t DawnGame::init() {
this->localeManager.init();
this->renderManager.init();
this->scene = new TestScene(this);
this->scene = new Scene_1_1(this);
return DAWN_GAME_INIT_RESULT_SUCCESS;
}