diff --git a/public/SoundEmitterSystem/isoundemittersystembase.h b/public/SoundEmitterSystem/isoundemittersystembase.h index f84b9f0a..46d2a5cb 100644 --- a/public/SoundEmitterSystem/isoundemittersystembase.h +++ b/public/SoundEmitterSystem/isoundemittersystembase.h @@ -189,9 +189,9 @@ private: bool uses_gender_token:1; bool m_bShouldPreload:1; - byte reserved; // 28 - - + float m_fBPM; // 28 + float m_fSignature; // 32 + float m_fFadeTime; // 36 }; #pragma pack() @@ -264,6 +264,9 @@ public: virtual soundlevel_t LookupSoundLevelByHandle( char const *soundname, HSOUNDSCRIPTHANDLE& handle ) = 0; virtual void ReloadSoundEntriesInList( IFileList *pFilesToReload ) = 0; + + // Flush and reload + virtual void Flush() = 0; }; #endif // ISOUNDEMITTERSYSTEMBASE_H