Implement/match LegoBuildingManager::Tickle (#1156)

This commit is contained in:
Christian Semmler
2024-11-15 14:51:46 -07:00
committed by GitHub
parent ff0ef96782
commit 3383ae646f
5 changed files with 81 additions and 19 deletions

View File

@@ -57,11 +57,10 @@ public:
LegoCacheSound* FindSoundByKey(const char* p_key);
LegoCacheSound* ManageSoundEntry(LegoCacheSound* p_sound);
LegoCacheSound* Play(const char* p_key, const char* p_name, MxBool p_looping);
LegoCacheSound* Play(LegoCacheSound* p_sound, const char* p_name, MxBool p_looping);
void Destroy(LegoCacheSound*& p_sound);
private:
LegoCacheSound* Play(LegoCacheSound* p_sound, const char* p_name, MxBool p_looping);
Set100d6b4c m_set; // 0x04
List100d6b4c m_list; // 0x14
};