3339
|
1 |
//
|
3352
|
2 |
// GravesViewController.h
|
3339
|
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 GravesViewController : UITableViewController {
|
3340
|
13 |
NSMutableDictionary *teamDictionary;
|
3339
|
14 |
|
|
15 |
NSArray *graveArray;
|
|
16 |
NSIndexPath *lastIndexPath;
|
|
17 |
}
|
|
18 |
|
3340
|
19 |
@property (nonatomic,retain) NSMutableDictionary *teamDictionary;
|
3339
|
20 |
@property (nonatomic,retain) NSArray *graveArray;
|
|
21 |
@property (nonatomic,retain) NSIndexPath *lastIndexPath;
|
|
22 |
|
|
23 |
@end
|