cocoaTouch/popupMenuViewController.h
author koda
Fri, 26 Mar 2010 23:47:12 +0000
changeset 3090 51629e69da51
child 3091 9d05c8000ed4
permissions -rw-r--r--
restore compilation use a tableview instead of random buttons fix the end game

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

#import <UIKit/UIKit.h>


@interface popupMenuViewController : UIViewController <UITableViewDelegate, UITableViewDataSource, UIActionSheetDelegate> {
	UITableView *menuTable;
    BOOL isPaused;
}
@property (nonatomic, retain) IBOutlet UITableView * menuTable;

@end