cocoaTouch/FortsViewController.h
author unc0rr
Mon, 10 May 2010 17:48:06 +0000
changeset 3458 11cd56019f00
parent 3374 0d522416d97f
child 3490 016b3172b645
permissions -rw-r--r--
Make some more protocol commands work
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;
3374
0d522416d97f lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents: 3352
diff changeset
    16
//    NSArray *fortSprites;
3325
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    17
    NSIndexPath *lastIndexPath;
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    18
}
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    19
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    20
@property (nonatomic,retain) NSDictionary * teamDictionary;
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    21
@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
    22
//@property (nonatomic,retain) NSArray *fortSprites;
3325
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    23
@property (nonatomic,retain) NSIndexPath *lastIndexPath;
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    24
@end