ace/Source/ACE.DatLoader/DatFileTypeAttribute.cs
Mag-nus 3502e699b9
ACE.DatLoader and ACE.DatLoader.Tests improvements (#614)
* 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
2018-02-03 17:54:07 -06:00

15 lines
312 B
C#

using System;
namespace ACE.DatLoader
{
[AttributeUsage(AttributeTargets.Class)]
public class DatFileTypeAttribute : Attribute
{
public DatFileType FileType { get; set; }
public DatFileTypeAttribute(DatFileType fileType)
{
FileType = fileType;
}
}
}