rename app_view_controller.h to view_controller.h

This commit is contained in:
scawful
2024-08-10 12:47:46 -04:00
parent c62269e11e
commit 592fd9c022

View File

@@ -1,5 +1,5 @@
#ifndef YAZE_APP_CORE_PLATFORM_APP_VIEW_CONTROLLER_H #ifndef YAZE_APP_CORE_PLATFORM_VIEW_CONTROLLER_H
#define YAZE_APP_CORE_PLATFORM_APP_VIEW_CONTROLLER_H #define YAZE_APP_CORE_PLATFORM_VIEW_CONTROLLER_H
#ifdef __APPLE__ #ifdef __APPLE__
#include <TargetConditionals.h> #include <TargetConditionals.h>
@@ -12,6 +12,8 @@
@interface AppViewController : UIViewController <MTKViewDelegate> @interface AppViewController : UIViewController <MTKViewDelegate>
@property(nonatomic) yaze::app::core::Controller *controller; @property(nonatomic) yaze::app::core::Controller *controller;
@property(nonatomic) UIHoverGestureRecognizer *hoverGestureRecognizer; @property(nonatomic) UIHoverGestureRecognizer *hoverGestureRecognizer;
@property(notatomic) UIPinchGestureRecognizer *pinchRecognizer;
@property(nonatomic) UISwipeGestureRecognizer *swipeRecognizer;
@end @end
#endif #endif