mirror of https://github.com/LIJI32/SameBoy.git
12 lines
227 B
C
12 lines
227 B
C
![]() |
#include <TargetConditionals.h>
|
||
|
#import <MetalKit/MetalKit.h>
|
||
|
#if TARGET_OS_IPHONE
|
||
|
#import "../iOS/GBView.h"
|
||
|
#else
|
||
|
#import "../Cocoa/GBView.h"
|
||
|
#endif
|
||
|
|
||
|
@interface GBViewMetal : GBView<MTKViewDelegate>
|
||
|
+ (bool) isSupported;
|
||
|
@end
|