cocoaTouch/LevelViewController.h
author nemo
Thu, 15 Apr 2010 20:46:34 +0000
changeset 3342 b4f01613dcd7
parent 3339 d558bc5a73c5
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.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3339
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
     1
//
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
     2
//  HogHatViewController.h
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 LevelViewController : UITableViewController {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    13
    NSDictionary *teamDictionary;
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 *levelArray;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    16
    NSArray *levelSprites;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    17
    NSIndexPath *lastIndexPath;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    18
}
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    19
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    20
@property (nonatomic,retain) NSDictionary *teamDictionary;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    21
@property (nonatomic,retain) NSArray *levelArray;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    22
@property (nonatomic,retain) NSArray *levelSprites;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    23
@property (nonatomic,retain) NSIndexPath *lastIndexPath;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    24
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    25
@end