LogicType.cs 92 B

12345678910
  1. using System;
  2. namespace Leap.Unity
  3. {
  4. public enum LogicType
  5. {
  6. AndGate,
  7. OrGate
  8. }
  9. }