ace/Source/ACE.DatLoader/DatFileTypeExtensionAttribute.cs
lurker-mcdoogle 1faa88b3b6 * improved cell.dat and portal.dat exporting, created admin server commands for them as well as unit tests that can be uncommented. (#127)
* 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.
2017-03-15 08:12:21 -04:00

19 lines
472 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 = true)]
public class DatFileTypeExtensionAttribute : Attribute
{
public string FileExtension { get; set; }
public DatFileTypeExtensionAttribute(string fileExtension)
{
this.FileExtension = fileExtension;
}
}
}