project_files/HedgewarsMobile/Classes/HogHatViewController.h
changeset 3546 ccf4854df294
parent 3514 59dbd31e9953
child 3547 02875b1145b7
equal deleted inserted replaced
3545:b07ee704f35d 3546:ccf4854df294
     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 {
       
    13     NSDictionary *teamDictionary;
       
    14     NSInteger selectedHog;
       
    15     
       
    16     NSArray *hatArray;
       
    17     UIImage *normalHogSprite;
       
    18     NSIndexPath *lastIndexPath;
       
    19 }
       
    20 
       
    21 @property (nonatomic,retain) NSDictionary *teamDictionary;
       
    22 @property (nonatomic) NSInteger selectedHog;
       
    23 @property (nonatomic,retain) NSArray *hatArray;
       
    24 @property (nonatomic,retain) UIImage *normalHogSprite;
       
    25 @property (nonatomic,retain) NSIndexPath *lastIndexPath;
       
    26 
       
    27 @end