Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009 #import <UIKit/UIKit.h>
00010
00011 #import "PauseDelegateProtocol.h"
00012
00013
00015 @interface AppDelegate : NSObject <UIApplicationDelegate>
00016 {
00017 UIWindow *window;
00018
00019 id<PauseDelegateProtocol> pauseDelegate;
00020
00021 bool hasOrientationChangedBefore;
00022 bool isPlaying;
00023 bool isPaused;
00024 }
00025
00026 @property (nonatomic, retain) UIWindow *window;
00027 @property (readwrite, nonatomic) bool isPlaying;
00028 @property (readwrite, nonatomic) bool isPaused;
00029
00030 @property (readonly, assign) id<PauseDelegateProtocol> pauseDelegate;
00031
00032 -(void) setPauseDelegate:(id<PauseDelegateProtocol>)delegate;
00033
00034 @end