Source/iPhoneAppDelegate.h
author Jens Alfke <jens@mooseyard.com>
Mon Jul 21 17:32:21 2008 -0700 (2008-07-21)
changeset 21 2eb229411d73
parent 2 7b0441db81e5
permissions -rwxr-xr-x
* Added API to Stack for removing bits.
* GoGame correctly saves/restores number of captured pieces.
* Improved positioning of captured-piece Stacks in GoGame.
* New Go piece icons.
* Added "Warn" function to GGBUtils.
     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