istereo

view src/main.m @ 35:23e5d274b2a2

added options panel, also added the xib files to the repository as they're needed
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 09 Sep 2011 10:03:42 +0300
parents 1bb950d0976b
children ff055bff6a15
line source
1 #import <UIKit/UIKit.h>
3 int main(int argc, char *argv[])
4 {
5 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
6 int retVal = UIApplicationMain(argc, argv, nil, nil);
7 [pool release];
8 return retVal;
9 }