Chirality.cs 98 B

1234567891011
  1. using System;
  2. namespace Leap.Unity
  3. {
  4. public enum Chirality
  5. {
  6. Left,
  7. Right,
  8. Either
  9. }
  10. }