author | koda |
Mon, 23 Aug 2010 00:46:06 +0200 | |
changeset 3753 | bb5a0252fb56 |
parent 3703 | 12d17c6e8855 |
child 3829 | 81db3c85784b |
permissions | -rw-r--r-- |
3547 | 1 |
// |
2 |
// SchemeWeaponConfigViewController.h |
|
3 |
// Hedgewars |
|
4 |
// |
|
5 |
// Created by Vittorio on 13/06/10. |
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved. |
|
7 |
// |
|
8 |
||
9 |
#import <UIKit/UIKit.h> |
|
10 |
||
11 |
||
12 |
@interface SchemeWeaponConfigViewController : UITableViewController { |
|
13 |
NSArray *listOfSchemes; |
|
14 |
NSArray *listOfWeapons; |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3547
diff
changeset
|
15 |
|
3547 | 16 |
NSIndexPath *lastIndexPath_sc; |
17 |
NSIndexPath *lastIndexPath_we; |
|
18 |
||
19 |
NSString *selectedScheme; |
|
20 |
NSString *selectedWeapon; |
|
21 |
} |
|
22 |
||
23 |
@property (nonatomic, retain) NSArray *listOfSchemes; |
|
24 |
@property (nonatomic, retain) NSArray *listOfWeapons; |
|
25 |
@property (nonatomic,retain) NSIndexPath *lastIndexPath_sc; |
|
26 |
@property (nonatomic,retain) NSIndexPath *lastIndexPath_we; |
|
27 |
@property (nonatomic,retain) NSString *selectedScheme; |
|
28 |
@property (nonatomic,retain) NSString *selectedWeapon; |
|
29 |
||
30 |
@end |