mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 21:08:51 +00:00
12 lines
No EOL
354 B
C#
12 lines
No EOL
354 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;
|
|
}
|
|
} |