cocoaTouch/SplitViewRootController.h
author koda
Mon, 12 Apr 2010 21:51:09 +0000
changeset 3338 dee9beba85cc
parent 3321 988e39ef3c20
child 3374 0d522416d97f
permissions -rw-r--r--
patch by raptor (polished by me) to allow tiger/xcode24 compilation

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

#import <UIKit/UIKit.h>

@class DetailViewController;
@interface SplitViewRootController : UIViewController {
    DetailViewController *detailViewController;
}

@property (nonatomic,retain) DetailViewController *detailViewController;

@end