maint: added minmaxslider package

This commit is contained in:
Chris
2025-07-19 11:35:15 -04:00
parent 185580c3af
commit 94a4742187
17 changed files with 512 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
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;
}
}
}