ViewController.h 264 B

12345678910111213141516171819
  1. #import <Metal/Metal.h>
  2. #import <MetalKit/MetalKit.h>
  3. #import "Renderer.h"
  4. #if TARGET_OS_IPHONE
  5. #import <UIKit/UIKit.h>
  6. @interface ViewController : UIViewController
  7. @end
  8. #else
  9. #import <Cocoa/Cocoa.h>
  10. @interface ViewController : NSViewController
  11. @end
  12. #endif