Cosmos/source/Indy.IL2CPU/Plugs/PlugAttribute.cs
mterwoord_cp b493bf136c
2009-09-12 16:49:12 +00:00

12 lines
No EOL
374 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 AlsoTargetSubtypes = false;
public string TargetName;
public bool IsMonoOnly = false;
public bool IsMicrosoftdotNETOnly = false;
}
}