Cosmos/source/Indy.IL2CPU/Plugs/PlugMethodAttribute.cs
kudzu_cp 087a1bcfb8
2008-09-22 01:48:46 +00:00

10 lines
No EOL
283 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 MethodAssembler = null;
}
}