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