mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-29 16:37:59 +01:00
15 lines
267 B
C#
15 lines
267 B
C#
|
namespace UnityStandardAssets.CinematicEffects
|
||
|
{
|
||
|
using UnityEngine;
|
||
|
|
||
|
public sealed class MinAttribute : PropertyAttribute
|
||
|
{
|
||
|
public readonly float min;
|
||
|
|
||
|
public MinAttribute(float min)
|
||
|
{
|
||
|
this.min = min;
|
||
|
}
|
||
|
}
|
||
|
}
|