project_files/HedgewarsMobile/Classes/SingleWeaponViewController.h
author koda
Sun, 18 Jul 2010 03:55:56 +0200
changeset 3651 7058ca178f3b
parent 3624 304c6d32383a
child 3659 f8d5ac50e307
permissions -rw-r--r--
switching hogs now works

//
//  SingleWeaponViewController.h
//  Hedgewars
//
//  Created by Vittorio on 19/06/10.
//  Copyright 2010 __MyCompanyName__. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "WeaponCellView.h"

@interface SingleWeaponViewController : UITableViewController <WeaponButtonControllerDelegate> {
    UIImage *ammoStoreImage;
    NSArray *ammoNames;
    
    char *quantity;
    char *probability;
    char *delay;
    char *crateness;
}

@property (nonatomic,retain) UIImage *ammoStoreImage;
@property (nonatomic,retain) NSArray *ammoNames;


@end