cocoaTouch/HogHatViewController.h
changeset 3315 4e2813713358
parent 3308 b6dcae4b6d2c
child 3339 d558bc5a73c5
--- 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