Source/iPhoneAppDelegate.h
changeset 1 3eb7be1dd7b6
child 2 7b0441db81e5
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/Source/iPhoneAppDelegate.h	Mon Mar 10 17:30:57 2008 -0700
     1.3 @@ -0,0 +1,25 @@
     1.4 +//
     1.5 +//  GGB_iPhoneAppDelegate.h
     1.6 +//  GGB-iPhone
     1.7 +//
     1.8 +//  Created by Jens Alfke on 3/7/08.
     1.9 +//  Copyright __MyCompanyName__ 2008. All rights reserved.
    1.10 +//
    1.11 +
    1.12 +#import <UIKit/UIKit.h>
    1.13 +
    1.14 +@class BoardUIView;
    1.15 +
    1.16 +@interface GGB_iPhoneAppDelegate : NSObject <UIModalViewDelegate> {
    1.17 +    UIWindow *_window;
    1.18 +    BoardUIView *_contentView;
    1.19 +    UILabel *_headline;
    1.20 +}
    1.21 +
    1.22 +@property (nonatomic, retain) UIWindow *window;
    1.23 +@property (nonatomic, retain) BoardUIView *contentView;
    1.24 +@property (nonatomic, retain) UILabel *headline;
    1.25 +
    1.26 +- (void) startGameNamed: (NSString*)gameClassName;
    1.27 +
    1.28 +@end