mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 22:34:53 +08:00
15 lines
285 B
Objective-C
15 lines
285 B
Objective-C
|
|
#import "cocos2d.h"
|
|
|
|
@interface spine_cocos2d_iphoneAppDelegate : NSObject <NSApplicationDelegate> {
|
|
NSWindow *window_;
|
|
CCGLView *glView_;
|
|
}
|
|
|
|
@property (assign) IBOutlet NSWindow *window;
|
|
@property (assign) IBOutlet CCGLView *glView;
|
|
|
|
- (IBAction)toggleFullScreen:(id)sender;
|
|
|
|
@end
|