cocoaTouch/iPad/MainMenuViewController.h
author smxx
Wed, 31 Mar 2010 17:52:55 +0000
changeset 3213 e48678c8cd28
parent 3165 3ec07a7d8456
permissions -rw-r--r--
General: * Updated changelog for 0.9.13 (might require some sorting)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3113
2829ea0dd47c * port fadeout to opengles
koda
parents:
diff changeset
     1
//
2829ea0dd47c * port fadeout to opengles
koda
parents:
diff changeset
     2
//  MainMenuViewController.h
2829ea0dd47c * port fadeout to opengles
koda
parents:
diff changeset
     3
//  hwengine
2829ea0dd47c * port fadeout to opengles
koda
parents:
diff changeset
     4
//
2829ea0dd47c * port fadeout to opengles
koda
parents:
diff changeset
     5
//  Created by Vittorio on 08/01/10.
2829ea0dd47c * port fadeout to opengles
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
2829ea0dd47c * port fadeout to opengles
koda
parents:
diff changeset
     7
//
2829ea0dd47c * port fadeout to opengles
koda
parents:
diff changeset
     8
2829ea0dd47c * port fadeout to opengles
koda
parents:
diff changeset
     9
#import <UIKit/UIKit.h>
2829ea0dd47c * port fadeout to opengles
koda
parents:
diff changeset
    10
#import "SettingsViewController.h"
2829ea0dd47c * port fadeout to opengles
koda
parents:
diff changeset
    11
2829ea0dd47c * port fadeout to opengles
koda
parents:
diff changeset
    12
@interface MainMenuViewController : UIViewController {
3122
e005359efc59 hide the background gl context that remains active (might be worth freeing ithide the background gl context that remains active (might be worth freeing it))
koda
parents: 3113
diff changeset
    13
    UIView *cover;
e005359efc59 hide the background gl context that remains active (might be worth freeing ithide the background gl context that remains active (might be worth freeing it))
koda
parents: 3113
diff changeset
    14
}
3113
2829ea0dd47c * port fadeout to opengles
koda
parents:
diff changeset
    15
3122
e005359efc59 hide the background gl context that remains active (might be worth freeing ithide the background gl context that remains active (might be worth freeing it))
koda
parents: 3113
diff changeset
    16
@property (nonatomic,retain) UIView *cover;
3113
2829ea0dd47c * port fadeout to opengles
koda
parents:
diff changeset
    17
2829ea0dd47c * port fadeout to opengles
koda
parents:
diff changeset
    18
-(void) appear;
2829ea0dd47c * port fadeout to opengles
koda
parents:
diff changeset
    19
-(void) disappear;
3165
3ec07a7d8456 just some very sane stuff for the iphone port (plus some macro on pascal files)
koda
parents: 3122
diff changeset
    20
-(void) hideBehind;
3113
2829ea0dd47c * port fadeout to opengles
koda
parents:
diff changeset
    21
2829ea0dd47c * port fadeout to opengles
koda
parents:
diff changeset
    22
-(IBAction) switchViews:(id)sender;
2829ea0dd47c * port fadeout to opengles
koda
parents:
diff changeset
    23
@end