FiE-Game/Assets/PostProcessing/Runtime/Attributes/TrackballAttribute.cs
2023-07-25 00:52:50 +05:00

12 lines
259 B
C#

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