1
//
2
// popupMenuViewController.h
3
// HedgewarsMobile
4
5
// Created by Vittorio on 25/03/10.
6
// Copyright 2010 __MyCompanyName__. All rights reserved.
7
8
9
#import <UIKit/UIKit.h>
10
11
12
@interface popupMenuViewController : UIViewController <UITableViewDelegate, UITableViewDataSource, UIActionSheetDelegate> {
13
UITableView *menuTable;
14
NSArray *menuList;
15
BOOL isPaused;
16
}
17
@property (nonatomic,retain) IBOutlet UITableView * menuTable;
18
@property (nonatomic,retain) NSArray *menuList;
19
20
@end