mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* ACE.DatLoader: XpTable updated * ACE.DatLoader physics and environment using new unpack pattern * ACE.DatLoader ContractTable updated to IUnpackable * ACE.DatLoader EnvCell refactored to new IUnpackable * Update PackableExtensions.cs * ACE.DatLoader This removes the loc object Before I proceed with further refactoring, I want to add some datloader tests... * Looks like it didn't catch all my changes... * ACE.DatLoader and ACE.DatLoader.Tests improvements
18 lines
412 B
C#
18 lines
412 B
C#
using System;
|
|
|
|
namespace ACE.DatLoader
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field)]
|
|
public class DatFileTypeIdRangeAttribute : Attribute
|
|
{
|
|
public uint BeginRange { get; set; }
|
|
|
|
public uint EndRange { get; set; }
|
|
|
|
public DatFileTypeIdRangeAttribute(uint beginRange, uint endRange)
|
|
{
|
|
BeginRange = beginRange;
|
|
EndRange = endRange;
|
|
}
|
|
}
|
|
}
|