mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
16 lines
515 B
C#
16 lines
515 B
C#
using System;
|
|
|
|
namespace Cosmos.IL2CPU.API.Attribs {
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
|
|
public sealed class PlugMethod: Attribute {
|
|
public string Signature = null;
|
|
public bool Enabled = true;
|
|
public Type Assembler = null;
|
|
public bool IsMonoOnly = false;
|
|
public bool IsMicrosoftdotNETOnly = false;
|
|
public bool PlugRequired = false;
|
|
public bool IsWildcard = false;
|
|
public bool WildcardMatchParameters = false;
|
|
public bool IsOptional = true;
|
|
}
|
|
}
|