MouseButton.cs 134 B

1234567891011
  1. #if UNITY_EDITOR
  2. namespace O3DWB
  3. {
  4. public enum MouseButton
  5. {
  6. Left = 0,
  7. Right,
  8. Middle
  9. }
  10. }
  11. #endif