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 |
// HogHatViewController.h |
|
3 |
// HedgewarsMobile |
|
4 |
// |
|
5 |
// Created by Vittorio on 02/04/10. |
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved. |
|
7 |
// |
|
8 |
||
9 |
#import <UIKit/UIKit.h> |
|
10 |
||
11 |
||
12 |
@interface HogHatViewController : UITableViewController { |
|
13 |
NSDictionary *teamDictionary; |
|
14 |
NSInteger selectedHog; |
|
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 |
NSArray *hatArray; |
17 |
UIImage *normalHogSprite; |
|
18 |
NSIndexPath *lastIndexPath; |
|
19 |
} |
|
20 |
||
21 |
@property (nonatomic,retain) NSDictionary *teamDictionary; |
|
22 |
@property (nonatomic) NSInteger selectedHog; |
|
23 |
@property (nonatomic,retain) NSArray *hatArray; |
|
24 |
@property (nonatomic,retain) UIImage *normalHogSprite; |
|
25 |
@property (nonatomic,retain) NSIndexPath *lastIndexPath; |
|
26 |
||
27 |
@end |