mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* bug fix in DatFile with the FileOffset being wrong. started detailed documentation on dat file contents. * worked on some object parsing. found a bunch more object types in the client - now categorizes ALL portal files.
22 lines
550 B
C#
22 lines
550 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ACE.DatLoader
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false)]
|
|
public class DatFileTypeIdRangeAttribute : Attribute
|
|
{
|
|
public uint BeginRange { get; set; }
|
|
|
|
public uint EndRange { get; set; }
|
|
|
|
public DatFileTypeIdRangeAttribute(uint beginRange, uint endRange)
|
|
{
|
|
this.BeginRange = beginRange;
|
|
this.EndRange = endRange;
|
|
}
|
|
}
|
|
}
|