Source/iPhoneAppDelegate.h
author Jens Alfke <jens@mooseyard.com>
Mon Jul 07 15:47:42 2008 -0700 (2008-07-07)
changeset 12 4e567e11f45f
parent 2 7b0441db81e5
permissions -rwxr-xr-x
Added new convenience methods for Game implementations.
     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 //
     8 
     9 #import <UIKit/UIKit.h>
    10 
    11 @class BoardUIView;
    12 
    13 @interface GGB_iPhoneAppDelegate : NSObject <UIAlertViewDelegate> {
    14     UIWindow *_window;
    15     BoardUIView *_contentView;
    16     UILabel *_headline;
    17 }
    18 
    19 @property (nonatomic, retain) UIWindow *window;
    20 @property (nonatomic, retain) BoardUIView *contentView;
    21 @property (nonatomic, retain) UILabel *headline;
    22 
    23 - (void) startGameNamed: (NSString*)gameClassName;
    24 
    25 @end