Source/iPhoneAppDelegate.h
author Jens Alfke <jens@mooseyard.com>
Wed Mar 12 15:51:32 2008 -0700 (2008-03-12)
changeset 6 af9b2b929b03
parent 1 3eb7be1dd7b6
child 8 45c82a071aca
permissions -rwxr-xr-x
Fixed: An exception in the Go game if you mouse down on the board but then drag to the captured-pieces area and release the mouse.
     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 <UIModalViewDelegate> {
    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