Added Pong

This commit is contained in:
Jeena Paradies 2011-02-28 14:58:00 +01:00
parent e53c2a82c4
commit cee10d5f75
94 changed files with 12789 additions and 0 deletions

17
games/Pong/main.m Normal file
View file

@ -0,0 +1,17 @@
//
// main.m
// Pong
//
// Created by Jeena on 26.01.11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;
}