istereo

view src/main.m @ 2:bb68fac22579

sanegl and shit
author John Tsiombikas <nuclear@mutantstargoat.com>
date Wed, 07 Sep 2011 02:48:35 +0300
parents
children 2c5620f0670c
line source
1 //
2 // main.m
3 // istereo
4 //
5 // Created by nuclear on 9/6/11.
6 // Copyright __MyCompanyName__ 2011. All rights reserved.
7 //
9 #import <UIKit/UIKit.h>
11 int main(int argc, char *argv[]) {
13 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
14 int retVal = UIApplicationMain(argc, argv, nil, nil);
15 [pool release];
16 return retVal;
17 }