Cosmos/source/Indy.IL2CPU.Plugs/PlugAttribute.cs
2008-02-04 08:17:37 +00:00

9 lines
No EOL
242 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;
}
}