3547
|
1 |
//
|
|
2 |
// LevelViewController.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
|