mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
13 lines
No EOL
352 B
C#
13 lines
No EOL
352 B
C#
using System;
|
|
|
|
namespace IL2CPU.API
|
|
{
|
|
[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;
|
|
}
|
|
} |