using System; namespace Leap.Unity.Attributes { public class MaxValue : CombinablePropertyAttribute, IPropertyConstrainer { public MaxValue(float maxValue) { this.maxValue = maxValue; } public float maxValue; } }