Cosmos/source/Indy.IL2CPU/Plugs/PlugAttribute.cs
kudzu_cp 1f9a36ddf8
2009-09-13 03:24:18 +00:00

12 lines
No EOL
373 B
C#

using System;
namespace Indy.IL2CPU.Plugs {
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
public sealed class PlugAttribute : Attribute {
public Type Target;
public bool Inheritable = false;
public string TargetName;
public bool IsMonoOnly = false;
public bool IsMicrosoftdotNETOnly = false;
}
}