mirror of
https://github.com/blanking003/cx-cocos.git
synced 2025-04-22 23:09:03 +00:00
16 lines
240 B
Objective-C
16 lines
240 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "ViewController.h"
|
|
|
|
@interface AppController : NSObject <NSApplicationDelegate>
|
|
{
|
|
}
|
|
|
|
@property (strong, nonatomic) ViewController* viewController;
|
|
|
|
+ (AppController *)ins;
|
|
- (void) removeLaunchImage;
|
|
|
|
@end
|
|
|