ace/Source/ACE.DatLoader/Entity/Attribute2ndBase.cs
OptimShi dcf9e82f10 Dat fixes (#848)
* Fixed some dat reading related errors.

* Adjusted AnimationPartChange and added second implementation of Unpack

* Small fix to highres/language dat reading to handle errors cleaner

* Updated highres/language dat loading logic, removed exceptions entirely
2018-07-05 15:09:20 -05:00

17 lines
365 B
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
namespace ACE.DatLoader.Entity
{
public class Attribute2ndBase : IUnpackable
{
public SkillFormula Formula { get; private set; } = new SkillFormula();
public void Unpack(BinaryReader reader)
{
Formula.Unpack(reader);
}
}
}