mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-05 15:30:00 +01:00
11 lines
250 B
Objective-C
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
|