cocoaTouch/popupMenuViewController.h
author koda
Sat, 27 Mar 2010 16:57:18 +0000
changeset 3113 2829ea0dd47c
parent 3091 9d05c8000ed4
permissions -rw-r--r--
* port fadeout to opengles * better notification mechanism * add a confirmation message before ending game * new structure for custom settings (splitview)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3090
51629e69da51 restore compilation
koda
parents:
diff changeset
     1
//
51629e69da51 restore compilation
koda
parents:
diff changeset
     2
//  popupMenuViewController.h
51629e69da51 restore compilation
koda
parents:
diff changeset
     3
//  HedgewarsMobile
51629e69da51 restore compilation
koda
parents:
diff changeset
     4
//
51629e69da51 restore compilation
koda
parents:
diff changeset
     5
//  Created by Vittorio on 25/03/10.
51629e69da51 restore compilation
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
51629e69da51 restore compilation
koda
parents:
diff changeset
     7
//
51629e69da51 restore compilation
koda
parents:
diff changeset
     8
51629e69da51 restore compilation
koda
parents:
diff changeset
     9
#import <UIKit/UIKit.h>
51629e69da51 restore compilation
koda
parents:
diff changeset
    10
51629e69da51 restore compilation
koda
parents:
diff changeset
    11
51629e69da51 restore compilation
koda
parents:
diff changeset
    12
@interface popupMenuViewController : UIViewController <UITableViewDelegate, UITableViewDataSource, UIActionSheetDelegate> {
3113
2829ea0dd47c * port fadeout to opengles
koda
parents: 3091
diff changeset
    13
    UITableView *menuTable;
3091
9d05c8000ed4 some code polish for the ifrontend
koda
parents: 3090
diff changeset
    14
    NSArray *menuList;
3090
51629e69da51 restore compilation
koda
parents:
diff changeset
    15
    BOOL isPaused;
51629e69da51 restore compilation
koda
parents:
diff changeset
    16
}
3091
9d05c8000ed4 some code polish for the ifrontend
koda
parents: 3090
diff changeset
    17
@property (nonatomic,retain) IBOutlet UITableView * menuTable;
9d05c8000ed4 some code polish for the ifrontend
koda
parents: 3090
diff changeset
    18
@property (nonatomic,retain) NSArray *menuList;
3090
51629e69da51 restore compilation
koda
parents:
diff changeset
    19
51629e69da51 restore compilation
koda
parents:
diff changeset
    20
@end