Cosmos/source2/Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/PlugAttribute.cs
mterwoord_cp d42206e826
2011-02-10 14:41:03 +00:00

13 lines
No EOL
376 B
C#

using System;
namespace Cosmos.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;
}
}