mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
17 lines
344 B
C#
17 lines
344 B
C#
using System;
|
|
|
|
using ACE.Entity.Enum;
|
|
|
|
namespace ACE.Entity
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field)]
|
|
public class CharacterOptions1Attribute : Attribute
|
|
{
|
|
public CharacterOptions1 Option { get; }
|
|
|
|
public CharacterOptions1Attribute(CharacterOptions1 option)
|
|
{
|
|
Option = option;
|
|
}
|
|
}
|
|
}
|