project_files/HedgewarsMobile/Classes/SingleWeaponViewController.h
author koda
Sat, 17 Jul 2010 03:59:10 +0200
changeset 3647 0d0df215fb52
parent 3624 304c6d32383a
child 3659 f8d5ac50e307
permissions -rw-r--r--
making chat work... (keyboard support is heavily broken in sdl upstream)

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