project_files/HedgewarsMobile/Classes/WeaponSettingsViewController.h
author koda
Sun, 20 Jun 2010 23:05:11 +0200
changeset 3525 1d7b056ff866
parent 3522 156c04c6a3d8
child 3546 ccf4854df294
permissions -rw-r--r--
some memory caring code
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3356
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     1
//
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     2
//  WeaponSettingsViewController.h
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     3
//  HedgewarsMobile
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     4
//
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     5
//  Created by Vittorio on 19/04/10.
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     7
//
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     8
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     9
#import <UIKit/UIKit.h>
3522
156c04c6a3d8 add initial stubs for selecting weapons in the ifrontend
koda
parents: 3514
diff changeset
    10
@class SingleWeaponViewController;
3356
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    11
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    12
@interface WeaponSettingsViewController : UITableViewController {
3522
156c04c6a3d8 add initial stubs for selecting weapons in the ifrontend
koda
parents: 3514
diff changeset
    13
    NSMutableArray *listOfWeapons;
156c04c6a3d8 add initial stubs for selecting weapons in the ifrontend
koda
parents: 3514
diff changeset
    14
    SingleWeaponViewController *childController;
3356
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    15
}
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    16
3522
156c04c6a3d8 add initial stubs for selecting weapons in the ifrontend
koda
parents: 3514
diff changeset
    17
@property (nonatomic, retain) NSMutableArray *listOfWeapons;
156c04c6a3d8 add initial stubs for selecting weapons in the ifrontend
koda
parents: 3514
diff changeset
    18
3356
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    19
@end