mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2025-02-18 19:34:22 +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;
|
|
}
|
|
}
|
|
}
|