mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
30 lines
No EOL
492 B
C#
30 lines
No EOL
492 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace Cosmos.IL2CPU.API
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple=true)]
|
|
public sealed class PlugFieldAttribute: Attribute {
|
|
public PlugFieldAttribute() {
|
|
}
|
|
|
|
public string FieldId {
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public bool IsExternalValue {
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public Type FieldType {
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public bool IsMonoOnly = false;
|
|
public bool IsMicrosoftdotNETOnly = false;
|
|
}
|
|
} |