cocoaTouch/HogHatViewController.h
changeset 3315 4e2813713358
parent 3308 b6dcae4b6d2c
child 3339 d558bc5a73c5
equal deleted inserted replaced
3314:bab4a078263f 3315:4e2813713358
     8 
     8 
     9 #import <UIKit/UIKit.h>
     9 #import <UIKit/UIKit.h>
    10 
    10 
    11 
    11 
    12 @interface HogHatViewController : UITableViewController {
    12 @interface HogHatViewController : UITableViewController {
    13     NSArray *hatList;
    13     NSDictionary *teamDictionary;
       
    14     NSInteger selectedHog;
       
    15     
       
    16     NSArray *hatArray;
    14     NSArray *hatSprites;
    17     NSArray *hatSprites;
    15     NSDictionary *hog;
    18     NSIndexPath *lastIndexPath;
    16 }
    19 }
    17 
    20 
    18 @property (nonatomic,retain) NSArray *hatList;
    21 @property (nonatomic,retain) NSDictionary * teamDictionary;
       
    22 @property (nonatomic) NSInteger selectedHog;
       
    23 @property (nonatomic,retain) NSArray *hatArray;
    19 @property (nonatomic,retain) NSArray *hatSprites;
    24 @property (nonatomic,retain) NSArray *hatSprites;
    20 @property (nonatomic,retain) NSDictionary *hog;
    25 @property (nonatomic,retain) NSIndexPath *lastIndexPath;
    21 
    26 
    22 @end
    27 @end