Cosmos/source/Indy.IL2CPU.IL/Attributes/PlugMethodAttribute.cs
2007-11-19 14:11:28 +00:00

12 lines
No EOL
336 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;
}
}