project_files/HedgewarsMobile/Classes/FortsViewController.h
author nemo
Sun, 20 Jun 2010 22:35:10 -0400
changeset 3526 a1d2180fef42
parent 3514 59dbd31e9953
child 3546 ccf4854df294
permissions -rw-r--r--
Replace SHA1 with adler32. For simple purposes of checking to see if players are playing the same map, this should be quite adequate and runs 15 times faster.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3325
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
     1
//
3352
ac5d14a35482 complete previews on the team settings
koda
parents: 3325
diff changeset
     2
//  FortsViewController.h
3325
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
     3
//  HedgewarsMobile
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
     4
//
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
     5
//  Created by Vittorio on 08/04/10.
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
     7
//
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
     8
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
     9
#import <UIKit/UIKit.h>
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    10
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    11
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    12
@interface FortsViewController : UITableViewController {
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    13
    NSDictionary *teamDictionary;
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    14
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    15
    NSArray *fortArray;
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    16
    NSIndexPath *lastIndexPath;
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    17
}
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    18
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    19
@property (nonatomic,retain) NSDictionary * teamDictionary;
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    20
@property (nonatomic,retain) NSArray *fortArray;
3374
0d522416d97f lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents: 3352
diff changeset
    21
//@property (nonatomic,retain) NSArray *fortSprites;
3325
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    22
@property (nonatomic,retain) NSIndexPath *lastIndexPath;
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    23
@end