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