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