equal
deleted
inserted
replaced
1 // |
|
2 // FortsViewController.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 FortsViewController : UITableViewController { |
|
13 NSDictionary *teamDictionary; |
|
14 |
|
15 NSArray *fortArray; |
|
16 NSIndexPath *lastIndexPath; |
|
17 } |
|
18 |
|
19 @property (nonatomic,retain) NSDictionary * teamDictionary; |
|
20 @property (nonatomic,retain) NSArray *fortArray; |
|
21 //@property (nonatomic,retain) NSArray *fortSprites; |
|
22 @property (nonatomic,retain) NSIndexPath *lastIndexPath; |
|
23 @end |
|