author | Jens Alfke <jens@mooseyard.com> |
Sun Feb 06 16:31:03 2011 -0800 (2011-02-06) | |
changeset 29 | 0b1c315ffc64 |
parent 2 | 7b0441db81e5 |
permissions | -rwxr-xr-x |
1 //
2 // iPhoneAppDelegate.h
3 // GGB-iPhone
4 //
5 // Created by Jens Alfke on 3/7/08.
6 // Copyright __MyCompanyName__ 2008. All rights reserved.
7 //
9 #import <UIKit/UIKit.h>
11 @class BoardUIView;
13 @interface GGB_iPhoneAppDelegate : NSObject <UIAlertViewDelegate> {
14 UIWindow *_window;
15 BoardUIView *_contentView;
16 UILabel *_headline;
17 }
19 @property (nonatomic, retain) UIWindow *window;
20 @property (nonatomic, retain) BoardUIView *contentView;
21 @property (nonatomic, retain) UILabel *headline;
23 - (void) startGameNamed: (NSString*)gameClassName;
25 @end