From 592fd9c0220d49c64ef720fe5fbb4bc33fe68477 Mon Sep 17 00:00:00 2001 From: scawful Date: Sat, 10 Aug 2024 12:47:46 -0400 Subject: [PATCH] rename app_view_controller.h to view_controller.h --- .../platform/{app_view_controller.h => view_controller.h} | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) rename src/app/core/platform/{app_view_controller.h => view_controller.h} (75%) diff --git a/src/app/core/platform/app_view_controller.h b/src/app/core/platform/view_controller.h similarity index 75% rename from src/app/core/platform/app_view_controller.h rename to src/app/core/platform/view_controller.h index dda350eb..9396eb3f 100644 --- a/src/app/core/platform/app_view_controller.h +++ b/src/app/core/platform/view_controller.h @@ -1,5 +1,5 @@ -#ifndef YAZE_APP_CORE_PLATFORM_APP_VIEW_CONTROLLER_H -#define YAZE_APP_CORE_PLATFORM_APP_VIEW_CONTROLLER_H +#ifndef YAZE_APP_CORE_PLATFORM_VIEW_CONTROLLER_H +#define YAZE_APP_CORE_PLATFORM_VIEW_CONTROLLER_H #ifdef __APPLE__ #include @@ -12,6 +12,8 @@ @interface AppViewController : UIViewController @property(nonatomic) yaze::app::core::Controller *controller; @property(nonatomic) UIHoverGestureRecognizer *hoverGestureRecognizer; +@property(notatomic) UIPinchGestureRecognizer *pinchRecognizer; +@property(nonatomic) UISwipeGestureRecognizer *swipeRecognizer; @end #endif