MinValue.cs 232 B

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