author | unc0rr |
Sat, 03 Apr 2010 14:46:54 +0000 | |
changeset 3292 | db97b92367a4 |
parent 3165 | 3ec07a7d8456 |
permissions | -rw-r--r-- |
3113 | 1 |
// |
2 |
// MainMenuViewController.h |
|
3 |
// hwengine |
|
4 |
// |
|
5 |
// Created by Vittorio on 08/01/10. |
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved. |
|
7 |
// |
|
8 |
||
9 |
#import <UIKit/UIKit.h> |
|
10 |
#import "SettingsViewController.h" |
|
11 |
||
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 | 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 | 17 |
|
18 |
-(void) appear; |
|
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 | 21 |
|
22 |
-(IBAction) switchViews:(id)sender; |
|
23 |
@end |