summaryrefslogtreecommitdiff
path: root/Client/Assets/Behavior Designer/Runtime/Object Drawers/IntSliderAttribute.cs
blob: 753df253c857191d3f9be6b137e7c2989c91b3c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
        }
    }
}