metalnes/app/OSX/MetalView.h
2022-02-24 19:33:07 -08:00

17 lines
231 B
Objective-C

#import <Cocoa/Cocoa.h>
#import <MetalKit/MetalKit.h>
#import "EventDelegate.h"
@interface MetalView : MTKView
@property (weak, nonatomic) IBOutlet id<EventDelegate> _Nullable eventDelegate;
- (void)registerDragDrop;
@end