Engine:
* Lowered the number of feathers spawned by Birdy
* Made hogs caugh/moan once they lose health due to poison - no longer random
Frontend:
* Modified game scheme editor to lookup the number of default ammoschemes (no longer hardcoded)
* Added new default game schemes: Barrel Mayhem, Tunnel Hogs
* Added new default weapon scheme: Tunnel Hogs
//
// 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;
NSArray *menuList;
BOOL isPaused;
}
@property (nonatomic,retain) IBOutlet UITableView * menuTable;
@property (nonatomic,retain) NSArray *menuList;
@end