Cosmos/source/Indy.IL2CPU/Plugs/PlugMethodAttribute.cs
2008-10-29 18:38:39 +00:00

12 lines
No EOL
370 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;
public bool IsMonoOnly = false;
public bool IsMicrosoftdotNETOnly = false;
}
}