2022-11-21 17:56:52 +01: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;
}
}
}