diff -r 8f48b54f42ce -r 98072b3871c1 project_files/HedgewarsMobile/Classes/OverlayViewController.h --- a/project_files/HedgewarsMobile/Classes/OverlayViewController.h Mon Aug 30 01:43:21 2010 +0200 +++ b/project_files/HedgewarsMobile/Classes/OverlayViewController.h Mon Aug 30 05:42:03 2010 +0200 @@ -10,6 +10,7 @@ #import "SDL_sysvideo.h" @class InGameMenuViewController; +@class HelpPageLobbyViewController; @interface OverlayViewController : UIViewController { // the timer that dims the overlay @@ -20,6 +21,9 @@ InGameMenuViewController *popupMenu; BOOL isPopoverVisible; + // the help menu + HelpPageLobbyViewController *helpPage; + // ths touch section CGFloat initialDistanceForPinching; CGPoint startingPoint; @@ -32,6 +36,7 @@ @property (nonatomic,retain) id popoverController; @property (nonatomic,retain) InGameMenuViewController *popupMenu; +@property (nonatomic,retain) HelpPageLobbyViewController *helpPage; -(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event; -(void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event; @@ -48,5 +53,7 @@ @end +// understands when the loading screen is done BOOL isGameRunning; - +// cache the grenade time +NSInteger cachedGrenadeTime; \ No newline at end of file