summary refs log tree commit diff stats
path: root/vendor
ModeNameSize
m---------vendor/tmxlite @ 796be880log stats blame
href='#n5'>5 6 7 8 9 10 11 12 13 14 15 16
//
//  main.m
//  Cart Collect
//
//  Created by iD Student Account on 7/18/11.
//  Copyright __MyCompanyName__ 2011. All rights reserved.
//

#import <UIKit/UIKit.h>

int main(int argc, char *argv[]) {
	NSAutoreleasePool *pool = [NSAutoreleasePool new];
	int retVal = UIApplicationMain(argc, argv, nil, @"Cart_CollectAppDelegate");
	[pool release];
	return retVal;
}