cocoaTouch/popupMenuViewController.h
author nemo
Sat, 27 Mar 2010 05:15:52 +0000
changeset 3098 e5a1bc4e56fd
parent 3091 9d05c8000ed4
child 3113 2829ea0dd47c
permissions -rw-r--r--
Specifically check for current hedgehog being on rope, the tricky bastard.
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> {
51629e69da51 restore compilation
koda
parents:
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