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