1#ifndef YAZE_APP_CORE_PLATFORM_VIEW_CONTROLLER_H
2#define YAZE_APP_CORE_PLATFORM_VIEW_CONTROLLER_H
5#include <TargetConditionals.h>
17@property(nonatomic) UIHoverGestureRecognizer *hoverGestureRecognizer;
18@property(nonatomic) UIPinchGestureRecognizer *pinchRecognizer;
19@property(nonatomic) UISwipeGestureRecognizer *swipeRecognizer;
20@property(nonatomic) UILongPressGestureRecognizer *longPressRecognizer;
27@property(nonatomic, readonly) MTKView *mtkView;
28@property(nonatomic, strong) id<MTLDevice> device;
29@property(nonatomic, strong) id<MTLCommandQueue> commandQueue;
Main controller for the application.