diff -r dfc574d7f49e -r cc79eb30346e project_files/HedgewarsMobile/Classes/SavedGamesViewController.h --- a/project_files/HedgewarsMobile/Classes/SavedGamesViewController.h Tue Aug 23 09:23:45 2011 +0200 +++ b/project_files/HedgewarsMobile/Classes/SavedGamesViewController.h Tue Aug 23 10:07:40 2011 +0200 @@ -22,14 +22,18 @@ #import #import "EditableCellView.h" +@class GameInterfaceBridge; + @interface SavedGamesViewController : UIViewController { UITableView *tableView; NSMutableArray *listOfSavegames; + GameInterfaceBridge *interfaceBridge; } @property (nonatomic,retain) IBOutlet UITableView *tableView; @property (nonatomic,retain) NSMutableArray *listOfSavegames; +@property (nonatomic,retain) GameInterfaceBridge *interfaceBridge; -(IBAction) buttonPressed:(id) sender; -(IBAction) toggleEdit:(id) sender;