cocoaTouch/iPad/MainMenuViewController.h
author sheepluva
Sat, 03 Apr 2010 10:26:24 +0000
changeset 3284 7ffd0e20ad08
parent 3165 3ec07a7d8456
permissions -rw-r--r--
Palewolf: * SniperRifle.lua: convert spaces to tabs * Update spanish translation sheepluva: translations: * ran sed -i 's/ type="[^"]*"//' on .ts files as requested by Smaxx and Palewolf * ran lupdate and lrelease frontend: * reduce min window-size a bit * make option page scale down better engine: * replacing Smaxx' latest commit with a TryDo()

//
//  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