First attempt to play audio

This commit is contained in:
2023-01-17 00:11:22 -08:00
parent f2a0d3b3bb
commit 2950bc9184
44 changed files with 698 additions and 82 deletions

View File

@ -7,9 +7,6 @@
#include "scenes/SubSceneRendererScene.hpp"
#include "scenes/Scene_1.hpp"
#include <thread>
#include <chrono>
using namespace Dawn;
DawnGame::DawnGame(DawnHost *host) :
@ -26,7 +23,7 @@ int32_t DawnGame::init() {
this->localeManager.init();
this->renderManager.init();
this->scene = new SubSceneRendererScene<Scene_4>(this);
this->scene = new SubSceneRendererScene<Scene_1>(this);
return DAWN_GAME_INIT_RESULT_SUCCESS;
}