project_files/HedgewarsMobile/Classes/SavedGamesViewController.h
changeset 3898 0a9c3735a713
parent 3895 e7c202c08ac1
child 3903 db01c37494af
--- a/project_files/HedgewarsMobile/Classes/SavedGamesViewController.h	Thu Sep 23 00:09:16 2010 +0200
+++ b/project_files/HedgewarsMobile/Classes/SavedGamesViewController.h	Thu Sep 23 01:29:20 2010 +0200
@@ -22,8 +22,15 @@
 #import <UIKit/UIKit.h>
 
 
-@interface SavedGamesViewController : UITableViewController {
-
+@interface SavedGamesViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>  {
+    UITableView *tableView;
+    NSMutableArray *listOfSavegames;
 }
 
+@property (nonatomic,retain) IBOutlet UITableView *tableView;
+@property (nonatomic,retain) NSMutableArray *listOfSavegames;
+
+
+-(IBAction) buttonPressed:(id) sender;
+
 @end