Audio API first pass

This commit is contained in:
2023-01-17 10:13:08 -08:00
parent 9fc4d2e4e2
commit a403a292be
27 changed files with 513 additions and 95 deletions

View File

@ -14,7 +14,8 @@ DawnGame::DawnGame(DawnHost *host) :
renderManager(this),
inputManager(this),
localeManager(this),
saveManager(this)
saveManager(this),
audioManager(this)
{
}
@ -22,6 +23,7 @@ int32_t DawnGame::init() {
this->assetManager.init();
this->localeManager.init();
this->renderManager.init();
this->audioManager.init();
this->scene = new SubSceneRendererScene<Scene_1>(this);