You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 5, 2024. It is now read-only.
/// Handles reading a SoundSet from INI. If the Reader is trying to read a line adding a sound, it'll call ReadSound and add the resulting sound to a new SoundSet.
/// <param name="propName">The name of the property to be read.</param>
154
+
/// <param name="reader">A Reader lined up to the value of the property to be read.</param>
155
+
/// <returns>An error return value signaling whether the property was successfully read or not. 0 means it was succesful, any nonzero value means it failed.</returns>
/// Handles reading a SoundData from INI, loading it in as a ContentFile and into FMOD, and reading any of its subproperties. Does not add the created SoundData to a SoundContainer.
154
160
/// </summary>
155
-
/// <param name="reader"></param>
156
-
/// <returns></returns>
161
+
/// <param name="reader">A Reader lined up to the value of the property to be read.</param>
162
+
/// <returns>SoundData for the newly read sound.</returns>
0 commit comments