Cosmos/source/Indy.IL2CPU/Plugs/PlugAttribute.cs
2008-10-29 18:38:39 +00:00

11 lines
No EOL
329 B
C#

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