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

19 lines
226 B
Objective-C

#pragma once
#import <Cocoa/Cocoa.h>
@protocol EventDelegate <NSObject>
@required
- (void)keyDown:(NSEvent * _Nonnull)event;
- (void)keyUp:(NSEvent * _Nonnull)event;
-(void)onDragDrop:(NSArray * _Nonnull)files;
@end