Files
UltimateFishing2020/Assets/Scripts/Assembly-CSharp/UnityEngine/PostProcessing/GetSetAttribute.cs
2026-03-04 10:03:45 +08:00

15 lines
225 B
C#

namespace UnityEngine.PostProcessing
{
public sealed class GetSetAttribute : PropertyAttribute
{
public readonly string name;
public bool dirty;
public GetSetAttribute(string name)
{
this.name = name;
}
}
}