Added Pong
This commit is contained in:
parent
e53c2a82c4
commit
cee10d5f75
94 changed files with 12789 additions and 0 deletions
22
games/Pong/Classes/PongAppDelegate.h
Normal file
22
games/Pong/Classes/PongAppDelegate.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
//
|
||||
// PongAppDelegate.h
|
||||
// Pong
|
||||
//
|
||||
// Created by Jeena on 26.01.11.
|
||||
// Copyright 2011 __MyCompanyName__. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
@class PongViewController;
|
||||
|
||||
@interface PongAppDelegate : NSObject <UIApplicationDelegate> {
|
||||
UIWindow *window;
|
||||
PongViewController *viewController;
|
||||
}
|
||||
|
||||
@property (nonatomic, retain) IBOutlet UIWindow *window;
|
||||
@property (nonatomic, retain) IBOutlet PongViewController *viewController;
|
||||
|
||||
@end
|
||||
|
Reference in a new issue