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