cocoaTouch/iPad/MainMenuViewController.h
author nemo
Thu, 01 Apr 2010 16:08:09 +0000
changeset 3236 4ab3917d7d44
parent 3165 3ec07a7d8456
permissions -rw-r--r--
Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010

//
//  MainMenuViewController.h
//  hwengine
//
//  Created by Vittorio on 08/01/10.
//  Copyright 2010 __MyCompanyName__. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "SettingsViewController.h"

@interface MainMenuViewController : UIViewController {
    UIView *cover;
}

@property (nonatomic,retain) UIView *cover;

-(void) appear;
-(void) disappear;
-(void) hideBehind;

-(IBAction) switchViews:(id)sender;
@end