project_files/HedgewarsMobile/Classes/SingleWeaponViewController.h
author koda
Wed, 07 Jul 2010 03:03:59 +0200
changeset 3627 f1da1d8fb56c
parent 3624 304c6d32383a
child 3659 f8d5ac50e307
permissions -rw-r--r--
the game now respects the orientation of the frontend

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