Cosmos/source/Indy.IL2CPU/Plugs/PlugAttribute.cs
kudzu_cp 2ce9bbc646
2008-09-21 23:26:17 +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;
}
}