ace/Source/ACE.DatLoader/Entity/AmbientSTBDesc.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

18 lines
439 B
C#

using System.Collections.Generic;
using System.IO;
namespace ACE.DatLoader.Entity
{
public class AmbientSTBDesc : IUnpackable
{
public uint STBId { get; private set; }
public List<AmbientSoundDesc> AmbientSounds { get; } = new List<AmbientSoundDesc>();
public void Unpack(BinaryReader reader)
{
STBId = reader.ReadUInt32();
AmbientSounds.Unpack(reader);
}
}
}