project_files/HedgewarsMobile/Classes/SingleWeaponViewController.h
author koda
Wed, 07 Jul 2010 02:52:11 +0200
changeset 3626 19f78afa0188
parent 3624 304c6d32383a
child 3659 f8d5ac50e307
permissions -rw-r--r--
fix the multitouch shooting and moving fix a crash (unknown) when reloading leave the lobby open after returing from game

//
//  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