cocoaTouch/LevelViewController.h
changeset 3339 d558bc5a73c5
child 3352 ac5d14a35482
equal deleted inserted replaced
3338:dee9beba85cc 3339:d558bc5a73c5
       
     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 LevelViewController : UITableViewController {
       
    13     NSDictionary *teamDictionary;
       
    14     
       
    15     NSArray *levelArray;
       
    16     NSArray *levelSprites;
       
    17     NSIndexPath *lastIndexPath;
       
    18 }
       
    19 
       
    20 @property (nonatomic,retain) NSDictionary *teamDictionary;
       
    21 @property (nonatomic,retain) NSArray *levelArray;
       
    22 @property (nonatomic,retain) NSArray *levelSprites;
       
    23 @property (nonatomic,retain) NSIndexPath *lastIndexPath;
       
    24 
       
    25 @end