diff -r bab4a078263f -r 4e2813713358 cocoaTouch/HogHatViewController.h --- a/cocoaTouch/HogHatViewController.h Tue Apr 06 21:00:55 2010 +0000 +++ b/cocoaTouch/HogHatViewController.h Tue Apr 06 21:54:46 2010 +0000 @@ -10,13 +10,18 @@ @interface HogHatViewController : UITableViewController { - NSArray *hatList; + NSDictionary *teamDictionary; + NSInteger selectedHog; + + NSArray *hatArray; NSArray *hatSprites; - NSDictionary *hog; + NSIndexPath *lastIndexPath; } -@property (nonatomic,retain) NSArray *hatList; +@property (nonatomic,retain) NSDictionary * teamDictionary; +@property (nonatomic) NSInteger selectedHog; +@property (nonatomic,retain) NSArray *hatArray; @property (nonatomic,retain) NSArray *hatSprites; -@property (nonatomic,retain) NSDictionary *hog; +@property (nonatomic,retain) NSIndexPath *lastIndexPath; @end