author | koda |
Tue, 20 Jul 2010 03:14:43 +0200 | |
changeset 3659 | f8d5ac50e307 |
parent 3648 | 2477029463ed |
child 3668 | 3f7a95234d8a |
permissions | -rw-r--r-- |
3547 | 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 |
||
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3547
diff
changeset
|
12 |
@interface InGameMenuViewController : UITableViewController <UIActionSheetDelegate> { |
3547 | 13 |
NSArray *menuList; |
14 |
BOOL isPaused; |
|
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3547
diff
changeset
|
15 |
SDL_Window *sdlwindow; |
3547 | 16 |
} |
3648 | 17 |
|
3547 | 18 |
@property (nonatomic,retain) NSArray *menuList; |
19 |
||
3648 | 20 |
-(void) present; |
21 |
-(void) dismiss; |
|
22 |
-(void) removeChat; |
|
23 |
||
3547 | 24 |
@end |