mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-29 00:27:59 +01:00
13 lines
272 B
C#
13 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;
|
|
}
|
|
}
|
|
}
|