mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
18 lines
No EOL
674 B
C#
18 lines
No EOL
674 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 bool InMetalMode = true;
|
|
public bool InNormalMode = true;
|
|
public Type MethodAssembler = null;
|
|
|
|
public const string SignaturePropertyName = "Signature";
|
|
public const string EnabledPropertyName = "Enabled";
|
|
public const string InMetalModePropertyName = "InMetalMode";
|
|
public const string InNormalModePropertyName = "InNormalMode";
|
|
public const string MethodAssemblerPropertyName = "MethodAssembler";
|
|
}
|
|
} |