feat(sound): stub SI2::PlayUISound

This commit is contained in:
fallenoak 2025-11-22 13:40:08 -06:00
parent 0998e542a3
commit 29f5a17499
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D
2 changed files with 5 additions and 0 deletions

View File

@ -208,6 +208,10 @@ void SI2::InitSoundKitGroups() {
} }
} }
void SI2::PlayUISound(int32_t id) {
// TODO
}
void SI2::RegisterCVars() { void SI2::RegisterCVars() {
CVar::Register( CVar::Register(
"StartTalkingDelay", "StartTalkingDelay",

View File

@ -23,6 +23,7 @@ class SI2 {
static int32_t Init(int32_t a1); static int32_t Init(int32_t a1);
static void InitSoundKitDefs(); static void InitSoundKitDefs();
static void InitSoundKitGroups(); static void InitSoundKitGroups();
static void PlayUISound(int32_t id);
static void RegisterCVars(); static void RegisterCVars();
static void RegisterScriptFunctions(); static void RegisterScriptFunctions();
}; };