UnityView+tvOS.h 502 B

123456789101112131415
  1. #pragma once
  2. @interface UnityView (tvOS)
  3. - (void)touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event;
  4. - (void)touchesEnded:(NSSet*)touches withEvent:(UIEvent*)event;
  5. - (void)touchesCancelled:(NSSet*)touches withEvent:(UIEvent*)event;
  6. - (void)touchesMoved:(NSSet*)touches withEvent:(UIEvent*)event;
  7. #if UNITY_TVOS_SIMULATOR_FAKE_REMOTE
  8. - (void)pressesBegan:(NSSet<UIPress*>*)presses withEvent:(UIEvent*)event;
  9. - (void)pressesEnded:(NSSet<UIPress*>*)presses withEvent:(UIEvent*)event;
  10. #endif
  11. @end