mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-10 18:21:20 +00:00
15 lines
No EOL
450 B
C#
15 lines
No EOL
450 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.IL {
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
|
|
public sealed class PlugMethodAttribute: Attribute {
|
|
public string Signature = null;
|
|
public PlugScopeEnum Scope = PlugScopeEnum.All;
|
|
|
|
public const string ScopePropertyName = "Scope";
|
|
public const string SignaturePropertyName = "Signature";
|
|
}
|
|
} |