2017-09-02 08:36:24 -07:00
|
|
|
using System.Collections.Generic;
|
2018-01-28 13:41:46 -06:00
|
|
|
using System.IO;
|
2017-09-02 08:36:24 -07:00
|
|
|
|
|
|
|
|
namespace ACE.DatLoader.Entity
|
|
|
|
|
{
|
2018-01-28 13:41:46 -06:00
|
|
|
public class SoundDesc : IUnpackable
|
2017-09-02 08:36:24 -07:00
|
|
|
{
|
2018-01-28 13:41:46 -06:00
|
|
|
public List<AmbientSTBDesc> STBDesc { get; } = new List<AmbientSTBDesc>();
|
2017-09-02 08:36:24 -07:00
|
|
|
|
2018-01-28 13:41:46 -06:00
|
|
|
public void Unpack(BinaryReader reader)
|
2017-09-02 08:36:24 -07:00
|
|
|
{
|
2018-01-28 13:41:46 -06:00
|
|
|
STBDesc.Unpack(reader);
|
2017-09-02 08:36:24 -07:00
|
|
|
}
|
|
|
|
|
}
|
2018-01-28 13:41:46 -06:00
|
|
|
}
|