mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-12-01 17:37:59 +01:00
12 lines
259 B
C#
12 lines
259 B
C#
namespace UnityEngine.PostProcessing
|
|
{
|
|
public sealed class TrackballAttribute : PropertyAttribute
|
|
{
|
|
public readonly string method;
|
|
|
|
public TrackballAttribute(string method)
|
|
{
|
|
this.method = method;
|
|
}
|
|
}
|
|
}
|