project_files/HedgewarsMobile/Classes/SavedGamesViewController.h
changeset 3898 0a9c3735a713
parent 3895 e7c202c08ac1
child 3903 db01c37494af
equal deleted inserted replaced
3897:27e115fa1143 3898:0a9c3735a713
    20 
    20 
    21 
    21 
    22 #import <UIKit/UIKit.h>
    22 #import <UIKit/UIKit.h>
    23 
    23 
    24 
    24 
    25 @interface SavedGamesViewController : UITableViewController {
    25 @interface SavedGamesViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>  {
    26 
    26     UITableView *tableView;
       
    27     NSMutableArray *listOfSavegames;
    27 }
    28 }
    28 
    29 
       
    30 @property (nonatomic,retain) IBOutlet UITableView *tableView;
       
    31 @property (nonatomic,retain) NSMutableArray *listOfSavegames;
       
    32 
       
    33 
       
    34 -(IBAction) buttonPressed:(id) sender;
       
    35 
    29 @end
    36 @end