cocoaTouch/HogHatViewController.h
author unc0rr
Mon, 10 May 2010 17:48:06 +0000
changeset 3458 11cd56019f00
parent 3374 0d522416d97f
permissions -rw-r--r--
Make some more protocol commands work
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     1
//
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     2
//  HogHatViewController.h
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     3
//  HedgewarsMobile
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     4
//
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     5
//  Created by Vittorio on 02/04/10.
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     7
//
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     8
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     9
#import <UIKit/UIKit.h>
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    10
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    11
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    12
@interface HogHatViewController : UITableViewController {
3315
4e2813713358 usa a cached dictionary and write only when needed
koda
parents: 3308
diff changeset
    13
    NSDictionary *teamDictionary;
4e2813713358 usa a cached dictionary and write only when needed
koda
parents: 3308
diff changeset
    14
    NSInteger selectedHog;
4e2813713358 usa a cached dictionary and write only when needed
koda
parents: 3308
diff changeset
    15
    
4e2813713358 usa a cached dictionary and write only when needed
koda
parents: 3308
diff changeset
    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
4e2813713358 usa a cached dictionary and write only when needed
koda
parents: 3308
diff changeset
    18
    NSIndexPath *lastIndexPath;
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    19
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    20
3339
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents: 3315
diff changeset
    21
@property (nonatomic,retain) NSDictionary *teamDictionary;
3315
4e2813713358 usa a cached dictionary and write only when needed
koda
parents: 3308
diff changeset
    22
@property (nonatomic) NSInteger selectedHog;
4e2813713358 usa a cached dictionary and write only when needed
koda
parents: 3308
diff changeset
    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
4e2813713358 usa a cached dictionary and write only when needed
koda
parents: 3308
diff changeset
    25
@property (nonatomic,retain) NSIndexPath *lastIndexPath;
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    26
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    27
@end