Files
BH3/Assets/Plugins/Assembly-CSharp-firstpass/BehaviorDesigner/Runtime/ObjectDrawers/IntSliderAttribute.cs
2025-08-13 09:26:42 +08:00

18 lines
285 B
C#

using BehaviorDesigner.Runtime.Tasks;
namespace BehaviorDesigner.Runtime.ObjectDrawers
{
public class IntSliderAttribute : ObjectDrawerAttribute
{
public int min;
public int max;
public IntSliderAttribute(int min, int max)
{
this.min = min;
this.max = max;
}
}
}