17 lines
314 B
C#
17 lines
314 B
C#
namespace GD.MinMaxSlider
|
|
{
|
|
using UnityEngine;
|
|
|
|
public class MinMaxSliderAttribute : PropertyAttribute{
|
|
|
|
public float min;
|
|
public float max;
|
|
|
|
public MinMaxSliderAttribute(float min, float max)
|
|
{
|
|
this.min = min;
|
|
this.max = max;
|
|
}
|
|
}
|
|
}
|