using System; namespace Indy.IL2CPU.Plugs { [AttributeUsage(AttributeTargets.Method, AllowMultiple = false)] public sealed class PlugMethodAttribute: Attribute { public string Signature = null; public bool Enabled = true; public Type Assembler = null; } }