mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-12-01 17:37:59 +01:00
14 lines
267 B
C#
14 lines
267 B
C#
#if !UNITY_2018_3_OR_NEWER
|
|
namespace UnityEngine.PostProcessing
|
|
{
|
|
public sealed class MinAttribute : PropertyAttribute
|
|
{
|
|
public readonly float min;
|
|
|
|
public MinAttribute(float min)
|
|
{
|
|
this.min = min;
|
|
}
|
|
}
|
|
}
|
|
#endif
|