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

13 lines
259 B
C#

namespace UnityEngine.PostProcessing
{
public sealed class TrackballAttribute : PropertyAttribute
{
public readonly string method;
public TrackballAttribute(string method)
{
this.method = method;
}
}
}