mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
15 lines
328 B
C#
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);
|
|
}
|
|
}
|
|
}
|