mirror of
https://github.com/ConjureETS/Unity_Utils.git
synced 2026-03-24 04:50:58 +00:00
13 lines
258 B
C#
13 lines
258 B
C#
using System;
|
|
|
|
public class MinMaxRangeAttribute : Attribute
|
|
{
|
|
public float Min { get; private set; }
|
|
public float Max { get; private set; }
|
|
|
|
public MinMaxRangeAttribute(float min, float max)
|
|
{
|
|
Min = min;
|
|
Max = max;
|
|
}
|
|
} |