16 lines
340 B
C#
16 lines
340 B
C#
using UnityEngine;
|
|
|
|
namespace KitsuneCafe.Sys.Attributes
|
|
{
|
|
public class MinMaxRangeAttribute : PropertyAttribute
|
|
{
|
|
public readonly float MinimumValue;
|
|
public readonly float MaximumValue;
|
|
|
|
public MinMaxRangeAttribute(float minimum, float maximum)
|
|
{
|
|
MinimumValue = minimum;
|
|
MaximumValue = maximum;
|
|
}
|
|
}
|
|
}
|