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