All Data Structures Files Functions Variables Enumerations Enumerator Properties Defines
/Projects/Cogito/src/AppDelegate.h
Go to the documentation of this file.
00001 //
00002 //  AppDelegate.h
00003 //  Author: Thomas Taylor
00004 //
00005 //  13/11/2011: Created class
00006 //
00007 
00008 #import "GameManager.h"
00009 #import <UIKit/UIKit.h>
00010 
00011 @class RootViewController;
00012 
00013 @interface AppDelegate : NSObject <UIApplicationDelegate> 
00014 
00015 {
00016  UIWindow   *window;
00017  RootViewController *viewController;
00018 }
00019 
00020 @property (nonatomic,retain) UIWindow *window;
00021 
00022 @end