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