mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* Fix Replace Animation Hook * SoundTable * Numerous Dat Updates * Added highres and language export commands
20 lines
419 B
C#
20 lines
419 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Text;
|
|
|
|
namespace ACE.DatLoader.Entity
|
|
{
|
|
public class SoundData : IUnpackable
|
|
{
|
|
|
|
public List<SoundTableData> Data = new List<SoundTableData>();
|
|
public uint Unknown;
|
|
|
|
public void Unpack(BinaryReader reader)
|
|
{
|
|
Data.Unpack(reader);
|
|
Unknown = reader.ReadUInt32();
|
|
}
|
|
}
|
|
}
|