EAGLView.h 694 B

123456789101112131415161718192021
  1. /******************************************************************************/
  2. @interface EAGLView : UIView<UIKeyInput>
  3. {
  4. BOOL initialized, keyboard_visible, force_touch;
  5. CADisplayLink *display_link;
  6. }
  7. -(void)detectForceTouch;
  8. -(void)update:(id)sender;
  9. -(void)setUpdate;
  10. @end
  11. /******************************************************************************/
  12. namespace EE{
  13. /******************************************************************************/
  14. extern void (*ResizeAdPtr)();
  15. EAGLView* GetUIView();
  16. /******************************************************************************/
  17. }
  18. /******************************************************************************/