mirror of
				https://github.com/ocornut/imgui.git
				synced 2025-11-04 01:34:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			265 B
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			265 B
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
 | 
						|
#import <Metal/Metal.h>
 | 
						|
#import <MetalKit/MetalKit.h>
 | 
						|
#import "Renderer.h"
 | 
						|
 | 
						|
#if TARGET_OS_IPHONE
 | 
						|
 | 
						|
#import <UIKit/UIKit.h>
 | 
						|
 | 
						|
@interface ViewController : UIViewController
 | 
						|
@end
 | 
						|
 | 
						|
#else
 | 
						|
 | 
						|
#import <Cocoa/Cocoa.h>
 | 
						|
 | 
						|
@interface ViewController : NSViewController
 | 
						|
@end
 | 
						|
 | 
						|
#endif
 |