project_files/HedgewarsMobile/Classes/InGameMenuViewController.h
author koda
Thu, 22 Jul 2010 12:47:32 +0200
changeset 3663 8c28abf427f5
parent 3648 2477029463ed
child 3668 3f7a95234d8a
permissions -rw-r--r--
reduce the number of keywords used and switch to BMP format for screenshots fixed a few little things from previous commit

//
//  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