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

17 lines
344 B
C#
Raw Permalink Normal View History

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