1#ifndef YAZE_APP_CORE_PLATFORM_VIEW_CONTROLLER_H
2#define YAZE_APP_CORE_PLATFORM_VIEW_CONTROLLER_H
5#include <TargetConditionals.h>
8#include "imgui_impl_osx.h"
14@property(nonatomic) UIHoverGestureRecognizer *hoverGestureRecognizer;
15@property(nonatomic) UIPinchGestureRecognizer *pinchRecognizer;
16@property(nonatomic) UISwipeGestureRecognizer *swipeRecognizer;
17@property(nonatomic) UILongPressGestureRecognizer *longPressRecognizer;
22@property(nonatomic, readonly) MTKView *mtkView;
23@property(nonatomic, strong) id<MTLDevice> device;
24@property(nonatomic, strong) id<MTLCommandQueue> commandQueue;
Main controller for the application.