cocoaTouch/GravesViewController.h
author nemo
Thu, 15 Apr 2010 20:46:34 +0000
changeset 3342 b4f01613dcd7
parent 3340 96dd168b080b
child 3352 ac5d14a35482
permissions -rw-r--r--
Some initial stubs for portal just so Tiy will quit nagging. Also let folks know what approximation of physics I plan to try, here.

//
//  HogHatViewController.h
//  HedgewarsMobile
//
//  Created by Vittorio on 02/04/10.
//  Copyright 2010 __MyCompanyName__. All rights reserved.
//

#import <UIKit/UIKit.h>


@interface GravesViewController : UITableViewController {
    NSMutableDictionary *teamDictionary;
    
    NSArray *graveArray;
    NSArray *graveSprites;
    NSIndexPath *lastIndexPath;
}

@property (nonatomic,retain) NSMutableDictionary *teamDictionary;
@property (nonatomic,retain) NSArray *graveArray;
@property (nonatomic,retain) NSArray *graveSprites;
@property (nonatomic,retain) NSIndexPath *lastIndexPath;

@end