| 49 | } |
| 50 | |
| 51 | void StartupMenuLayout::LoadSfx() { |
| 52 | this->user_create_sfx = pu::audio::LoadSfx(TryGetActiveThemeResource("sound/Startup/UserCreate.wav")); |
| 53 | this->user_select_sfx = pu::audio::LoadSfx(TryGetActiveThemeResource("sound/Startup/UserSelect.wav")); |
| 54 | } |
| 55 | |
| 56 | void StartupMenuLayout::DisposeSfx() { |
| 57 | pu::audio::DestroySfx(this->user_create_sfx); |
nothing calls this directly
no test coverage detected