mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-19 09:54:46 +01:00
18 lines
285 B
C#
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;
|
|
}
|
|
}
|
|
}
|