author | koda |
Sat, 27 Mar 2010 17:27:15 +0000 | |
changeset 3116 | 97dc65a47b15 |
child 3250 | d5cd1a617123 |
permissions | -rw-r--r-- |
3116
97dc65a47b15
branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff
changeset
|
1 |
// |
97dc65a47b15
branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff
changeset
|
2 |
// popupMenuViewController.h |
97dc65a47b15
branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff
changeset
|
3 |
// HedgewarsMobile |
97dc65a47b15
branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff
changeset
|
4 |
// |
97dc65a47b15
branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff
changeset
|
5 |
// Created by Vittorio on 25/03/10. |
97dc65a47b15
branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff
changeset
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved. |
97dc65a47b15
branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff
changeset
|
7 |
// |
97dc65a47b15
branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff
changeset
|
8 |
|
97dc65a47b15
branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff
changeset
|
9 |
#import <UIKit/UIKit.h> |
97dc65a47b15
branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff
changeset
|
10 |
|
97dc65a47b15
branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff
changeset
|
11 |
|
97dc65a47b15
branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff
changeset
|
12 |
@interface PopupMenuViewController : UIViewController <UITableViewDelegate, UITableViewDataSource, UIActionSheetDelegate> { |
97dc65a47b15
branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff
changeset
|
13 |
UITableView *menuTable; |
97dc65a47b15
branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff
changeset
|
14 |
NSArray *menuList; |
97dc65a47b15
branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff
changeset
|
15 |
BOOL isPaused; |
97dc65a47b15
branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff
changeset
|
16 |
} |
97dc65a47b15
branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff
changeset
|
17 |
@property (nonatomic,retain) IBOutlet UITableView * menuTable; |
97dc65a47b15
branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff
changeset
|
18 |
@property (nonatomic,retain) NSArray *menuList; |
97dc65a47b15
branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff
changeset
|
19 |
|
97dc65a47b15
branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff
changeset
|
20 |
@end |