cocoaTouch/FlagsViewController.h
changeset 3325 652a8ebdf667
child 3374 0d522416d97f
equal deleted inserted replaced
3324:339b271d6641 3325:652a8ebdf667
       
     1 //
       
     2 //  FlagsViewController.h
       
     3 //  HedgewarsMobile
       
     4 //
       
     5 //  Created by Vittorio on 08/04/10.
       
     6 //  Copyright 2010 __MyCompanyName__. All rights reserved.
       
     7 //
       
     8 
       
     9 #import <UIKit/UIKit.h>
       
    10 
       
    11 
       
    12 @interface FlagsViewController : UITableViewController {
       
    13     NSDictionary *teamDictionary;
       
    14 
       
    15     NSArray *flagArray;
       
    16     NSArray *flagSprites;
       
    17     
       
    18     NSIndexPath *lastIndexPath;
       
    19 }
       
    20 
       
    21 @property (nonatomic,retain) NSDictionary * teamDictionary;
       
    22 @property (nonatomic,retain) NSArray *flagArray;
       
    23 @property (nonatomic,retain) NSArray *flagSprites;
       
    24 @property (nonatomic,retain) NSIndexPath *lastIndexPath;
       
    25 @end