project_files/HedgewarsMobile/Classes/InGameMenuViewController.h
author koda
Thu, 22 Jul 2010 03:08:17 +0200
changeset 3662 a44406f4369b
parent 3648 2477029463ed
child 3668 3f7a95234d8a
permissions -rw-r--r--
polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)

//
//  popupMenuViewController.h
//  HedgewarsMobile
//
//  Created by Vittorio on 25/03/10.
//  Copyright 2010 __MyCompanyName__. All rights reserved.
//

#import <UIKit/UIKit.h>


@interface InGameMenuViewController : UITableViewController <UIActionSheetDelegate> {
    NSArray *menuList;
    BOOL isPaused;
    SDL_Window *sdlwindow;
}

@property (nonatomic,retain) NSArray *menuList;

-(void) present;
-(void) dismiss;
-(void) removeChat;

@end