BritainKnights/Scripts/Misc/DispellableAttribute.cs

10 lines
No EOL
160 B
C#

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