Cosmos/source/Indy.IL2CPU/Plugs/PlugMethodAttribute.cs
kudzu_cp a363aff9a3
2008-09-22 02:38:19 +00:00

10 lines
No EOL
277 B
C#

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;
}
}