mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-19 00:06:42 +08:00
10 lines
193 B
Objective-C
10 lines
193 B
Objective-C
|
|
#import <UIKit/UIKit.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
@autoreleasepool {
|
|
int retVal = UIApplicationMain(argc, argv, nil, @"AppController");
|
|
return retVal;
|
|
}
|
|
}
|