ace/Source/ACE.DatLoader/Entity/AnimationHooks/SoundTableHook.cs

16 lines
337 B
C#

using System.IO;
namespace ACE.DatLoader.Entity.AnimationHooks
{
public class SoundTableHook : AnimationHook
{
public uint SoundType { get; private set; }
public override void Unpack(BinaryReader reader)
{
base.Unpack(reader);
SoundType = reader.ReadUInt32();
}
}
}