cocoaTouch/MasterViewController.h
author koda
Tue, 06 Apr 2010 18:14:15 +0000
changeset 3312 6d8f1c76756d
parent 3305 91074496d5c9
child 3316 52f0482b043f
permissions -rw-r--r--
restore and update the old general settings show hats in the team table

//
//  MasterViewController.h
//  HedgewarsMobile
//
//  Created by Vittorio on 27/03/10.
//  Copyright 2010 __MyCompanyName__. All rights reserved.
//

#import <UIKit/UIKit.h>


@class DetailViewController;

@interface MasterViewController : UITableViewController {
    DetailViewController *detailViewController;
    NSArray *optionList;
    NSArray *controllers;
}

@property (nonatomic, retain) DetailViewController *detailViewController;
@property (nonatomic, retain) NSArray *optionList;
@property (nonatomic, retain) NSArray *controllers;

-(IBAction) dismissSplitView;

@end