vrshoot

view src/ios/main.m @ 0:b2f14e535253

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 01 Feb 2014 19:58:19 +0200
parents
children
line source
1 #import <UIKit/UIKit.h>
2 #import "app_delegate.h"
4 int main(int argc, char **argv)
5 {
6 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
7 int retval = UIApplicationMain(argc, argv, nil, @"AppDelegate");
8 [pool release];
9 return retval;
10 }