mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +00:00
9 lines
175 B
C#
9 lines
175 B
C#
using System;
|
|
|
|
namespace Cosmos.IL2CPU.API.Attribs
|
|
{
|
|
[AttributeUsage(AttributeTargets.Parameter)]
|
|
public sealed class FieldAccess : Attribute {
|
|
public string Name;
|
|
}
|
|
}
|