Files
vimix/osx/CustomDelegate.h
2020-11-02 20:55:38 +01:00

11 lines
250 B
Objective-C

#import <Foundation/Foundation.h>
#import <AppKit/AppKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface GLFWCustomDelegate : NSObject
+ (void)load; // load is called before even main() is run (as part of objc class registration)
@end
NS_ASSUME_NONNULL_END