ProjectDDD/Assets/External/Behavior Designer/Runtime/Object Drawers/IntSliderAttribute.cs
2025-07-07 19:25:56 +09:00

16 lines
343 B (Stored with Git LFS)
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;
}
}
}