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

16 lines
341 B
C#

using System.IO;
namespace ACE.DatLoader.Entity.AnimationHooks
{
public class AttackHook : AnimationHook
{
public AttackCone AttackCone { get; } = new AttackCone();
public override void Unpack(BinaryReader reader)
{
base.Unpack(reader);
AttackCone.Unpack(reader);
}
}
}