cocoaTouch/popupMenuViewController.h
author koda
Fri, 26 Mar 2010 23:47:12 +0000
changeset 3090 51629e69da51
child 3091 9d05c8000ed4
permissions -rw-r--r--
restore compilation use a tableview instead of random buttons fix the end game
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3090
51629e69da51 restore compilation
koda
parents:
diff changeset
     1
//
51629e69da51 restore compilation
koda
parents:
diff changeset
     2
//  popupMenuViewController.h
51629e69da51 restore compilation
koda
parents:
diff changeset
     3
//  HedgewarsMobile
51629e69da51 restore compilation
koda
parents:
diff changeset
     4
//
51629e69da51 restore compilation
koda
parents:
diff changeset
     5
//  Created by Vittorio on 25/03/10.
51629e69da51 restore compilation
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
51629e69da51 restore compilation
koda
parents:
diff changeset
     7
//
51629e69da51 restore compilation
koda
parents:
diff changeset
     8
51629e69da51 restore compilation
koda
parents:
diff changeset
     9
#import <UIKit/UIKit.h>
51629e69da51 restore compilation
koda
parents:
diff changeset
    10
51629e69da51 restore compilation
koda
parents:
diff changeset
    11
51629e69da51 restore compilation
koda
parents:
diff changeset
    12
@interface popupMenuViewController : UIViewController <UITableViewDelegate, UITableViewDataSource, UIActionSheetDelegate> {
51629e69da51 restore compilation
koda
parents:
diff changeset
    13
	UITableView *menuTable;
51629e69da51 restore compilation
koda
parents:
diff changeset
    14
    BOOL isPaused;
51629e69da51 restore compilation
koda
parents:
diff changeset
    15
}
51629e69da51 restore compilation
koda
parents:
diff changeset
    16
@property (nonatomic, retain) IBOutlet UITableView * menuTable;
51629e69da51 restore compilation
koda
parents:
diff changeset
    17
51629e69da51 restore compilation
koda
parents:
diff changeset
    18
@end