author | koda |
Sun, 23 May 2010 22:05:59 +0000 | |
changeset 3479 | 972ae3ec178a |
parent 3374 | 0d522416d97f |
permissions | -rw-r--r-- |
3305 | 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 { |
|
3315 | 13 |
NSDictionary *teamDictionary; |
14 |
NSInteger selectedHog; |
|
15 |
||
16 |
NSArray *hatArray; |
|
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3339
diff
changeset
|
17 |
UIImage *normalHogSprite; |
3315 | 18 |
NSIndexPath *lastIndexPath; |
3305 | 19 |
} |
20 |
||
3339 | 21 |
@property (nonatomic,retain) NSDictionary *teamDictionary; |
3315 | 22 |
@property (nonatomic) NSInteger selectedHog; |
23 |
@property (nonatomic,retain) NSArray *hatArray; |
|
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3339
diff
changeset
|
24 |
@property (nonatomic,retain) UIImage *normalHogSprite; |
3315 | 25 |
@property (nonatomic,retain) NSIndexPath *lastIndexPath; |
3305 | 26 |
|
27 |
@end |