ace/Source/ACE.DatLoader/Entity/SoundDesc.cs
Mag-nus e5fb929f39
ACE.DatLoader RegionDesc updated to the new format w/bug fixes (#607)
* ACE.DatLoader RegionDesc updated to the new format w/bug fixes

* Missing file
2018-01-28 13:41:46 -06:00

15 lines
328 B
C#

using System.Collections.Generic;
using System.IO;
namespace ACE.DatLoader.Entity
{
public class SoundDesc : IUnpackable
{
public List<AmbientSTBDesc> STBDesc { get; } = new List<AmbientSTBDesc>();
public void Unpack(BinaryReader reader)
{
STBDesc.Unpack(reader);
}
}
}