mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-03-05 10:16:54 +08:00
18 lines
368 B
Objective-C
Executable File
18 lines
368 B
Objective-C
Executable File
//
|
|
// main.m
|
|
// iphone
|
|
//
|
|
// Created by Walzer on 10-11-16.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
|
|
int retVal = UIApplicationMain(argc, argv, nil, @"AppController");
|
|
[pool release];
|
|
return retVal;
|
|
}
|