Ported services and sound, now just GUI left

This commit is contained in:
Vulpovile
2023-11-06 18:28:57 -08:00
parent b58161cf81
commit d8a2fe7495
7 changed files with 282 additions and 29 deletions

View File

@@ -12,7 +12,7 @@ DataModelInstance::DataModelInstance(void)
//guiRoot = new GuiRootInstance();
level = new LevelInstance();
//thumbnailGenerator = new ThumbnailGeneratorInstance();
//soundService = new SoundService();
soundService = new SoundService();
lightingInstance = new LightingInstance();
selectionService = new SelectionService();
@@ -25,7 +25,7 @@ DataModelInstance::DataModelInstance(void)
// Parent stuff
workspace->setParent(this);
level->setParent(this);
//soundService->setParent(this);
soundService->setParent(this);
lightingInstance->setParent(this);
running = false;
@@ -326,11 +326,11 @@ LevelInstance* DataModelInstance::getLevel()
return thumbnailGenerator;
}*/
//TODO implement
/*SoundService* DataModelInstance::getSoundService()
SoundService* DataModelInstance::getSoundService()
{
return soundService;
}*/
}
//TODO implement
LightingInstance* DataModelInstance::getLighting()