MaxValue.cs 232 B

1234567891011121314
  1. using System;
  2. namespace Leap.Unity.Attributes
  3. {
  4. public class MaxValue : CombinablePropertyAttribute, IPropertyConstrainer
  5. {
  6. public MaxValue(float maxValue)
  7. {
  8. this.maxValue = maxValue;
  9. }
  10. public float maxValue;
  11. }
  12. }