modernuo/Projects/UOContent/Misc/DispellableAttribute.cs
2020-08-27 18:30:38 -07:00

9 lines
148 B
C#

using System;
namespace Server.Misc
{
[AttributeUsage(AttributeTargets.Class)]
public class DispellableAttribute : Attribute
{
}
}