mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 17:56:04 +08:00
12 lines
210 B
Objective-C
12 lines
210 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@class RootViewController;
|
|
|
|
@interface AppController : NSObject <UIApplicationDelegate> {
|
|
UIWindow *window;
|
|
}
|
|
|
|
@property(nonatomic, readonly) RootViewController *viewController;
|
|
|
|
@end
|