cocoaTouch/iPad/PopupMenuViewController.h
author sheepluva
Sat, 03 Apr 2010 10:26:24 +0000
changeset 3284 7ffd0e20ad08
parent 3250 d5cd1a617123
permissions -rw-r--r--
Palewolf: * SniperRifle.lua: convert spaces to tabs * Update spanish translation sheepluva: translations: * ran sed -i 's/ type="[^"]*"//' on .ts files as requested by Smaxx and Palewolf * ran lupdate and lrelease frontend: * reduce min window-size a bit * make option page scale down better engine: * replacing Smaxx' latest commit with a TryDo()
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3116
97dc65a47b15 branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff changeset
     1
//
97dc65a47b15 branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff changeset
     2
//  popupMenuViewController.h
97dc65a47b15 branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff changeset
     3
//  HedgewarsMobile
97dc65a47b15 branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff changeset
     4
//
97dc65a47b15 branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff changeset
     5
//  Created by Vittorio on 25/03/10.
97dc65a47b15 branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
97dc65a47b15 branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff changeset
     7
//
97dc65a47b15 branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff changeset
     8
97dc65a47b15 branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff changeset
     9
#import <UIKit/UIKit.h>
97dc65a47b15 branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff changeset
    10
97dc65a47b15 branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff changeset
    11
3250
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents: 3116
diff changeset
    12
@interface PopupMenuViewController : UITableViewController <UIActionSheetDelegate> {
3116
97dc65a47b15 branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff changeset
    13
    NSArray *menuList;
97dc65a47b15 branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff changeset
    14
    BOOL isPaused;
97dc65a47b15 branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff changeset
    15
}
97dc65a47b15 branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff changeset
    16
@property (nonatomic,retain) NSArray *menuList;
97dc65a47b15 branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff changeset
    17
97dc65a47b15 branch ipad/iphone files to keep compatibility between versions
koda
parents:
diff changeset
    18
@end