project_files/HedgewarsMobile/Classes/GravesViewController.h
author nemo
Sun, 20 Jun 2010 18:26:49 -0400
changeset 3521 96a502730e81
parent 3514 59dbd31e9953
child 3546 ccf4854df294
permissions -rw-r--r--
Remove redundant test, add some temp variables to speed up the expensive CheckLand
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3339
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
     1
//
3352
ac5d14a35482 complete previews on the team settings
koda
parents: 3340
diff changeset
     2
//  GravesViewController.h
3339
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
     3
//  HedgewarsMobile
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
     4
//
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
     5
//  Created by Vittorio on 02/04/10.
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
     7
//
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
     8
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
     9
#import <UIKit/UIKit.h>
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    10
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    11
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    12
@interface GravesViewController : UITableViewController {
3340
96dd168b080b fix all of what was committed before
koda
parents: 3339
diff changeset
    13
    NSMutableDictionary *teamDictionary;
3339
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    14
    
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    15
    NSArray *graveArray;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    16
    NSIndexPath *lastIndexPath;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    17
}
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    18
3340
96dd168b080b fix all of what was committed before
koda
parents: 3339
diff changeset
    19
@property (nonatomic,retain) NSMutableDictionary *teamDictionary;
3339
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    20
@property (nonatomic,retain) NSArray *graveArray;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    21
@property (nonatomic,retain) NSIndexPath *lastIndexPath;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    22
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    23
@end