Rasagar/Assets/Flooded_Grounds/PostProcessing/Runtime/Attributes/GetSetAttribute.cs
2024-08-26 23:07:20 +03:00

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;
}
}
}