diff -r f8f0d0ceb19c -r 568bfd083465 project_files/HedgewarsMobile/Classes/MainMenuViewController.h --- a/project_files/HedgewarsMobile/Classes/MainMenuViewController.h Wed Sep 22 01:10:20 2010 +0200 +++ b/project_files/HedgewarsMobile/Classes/MainMenuViewController.h Wed Sep 22 02:22:15 2010 +0200 @@ -24,18 +24,21 @@ @class SplitViewRootController; @class GameConfigViewController; @class AboutViewController; +@class SavedGamesViewController; @interface MainMenuViewController : UIViewController { UILabel *versionLabel; GameConfigViewController *gameConfigViewController; SplitViewRootController *settingsViewController; AboutViewController *aboutViewController; + SavedGamesViewController *savedGamesViewController; } @property (nonatomic,retain) IBOutlet UILabel *versionLabel; @property (nonatomic,retain) GameConfigViewController *gameConfigViewController; @property (nonatomic,retain) SplitViewRootController *settingsViewController; @property (nonatomic,retain) AboutViewController *aboutViewController; +@property (nonatomic,retain) SavedGamesViewController *savedGamesViewController; -(IBAction) switchViews:(id)sender;