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