XRoom_Unity/Assets/Coworking office/PostProcessing/Runtime/Attributes/GetSetAttribute.cs
2025-05-31 10:20:20 +03:30

14 lines
272 B
C#

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