Source/iPhoneAppDelegate.h
author snej@snej.local
Sun Jan 11 00:02:27 2009 -0800 (2009-01-11)
changeset 26 e7a464fb6d39
parent 2 7b0441db81e5
permissions -rwxr-xr-x
Added ball graphics to Xcode project, which fixes the Go game. Fixed Tic-Tac-Toe. Fixed an exception in the demo app when changing games.
     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