Source/iPhoneAppDelegate.h
author Jens Alfke <jens@mooseyard.com>
Wed May 28 12:47:10 2008 -0700 (2008-05-28)
changeset 8 45c82a071aca
parent 2 7b0441db81e5
permissions -rwxr-xr-x
* Got it working with latest iPhone SDK.
* Fixed some text alignment issues that showed up on PlayingCards.
* Working on persistence and move-tracking for Game.
     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