main.m 388 B

1234567891011121314151617
  1. //
  2. // main.m
  3. // CubeExample
  4. //
  5. // Created by Brad Larson on 4/20/2010.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "CubeExampleAppDelegate.h"
  9. int main(int argc, char *argv[]) {
  10. NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
  11. int retVal = UIApplicationMain(argc, argv, nil, NSStringFromClass([CubeExampleAppDelegate class]));
  12. [pool release];
  13. return retVal;
  14. }