mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-11 17:48:45 +08:00
13 lines
214 B
Objective-C
13 lines
214 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@class RootViewController;
|
|
|
|
@interface AppController : NSObject <UIApplicationDelegate> {
|
|
UIWindow *window;
|
|
}
|
|
|
|
@property(nonatomic, readonly) RootViewController* viewController;
|
|
|
|
@end
|
|
|