cocoaTouch/MainMenuViewController.h
author smxx
Sat, 10 Apr 2010 21:36:40 +0000
changeset 3333 560e2766c445
parent 3312 6d8f1c76756d
child 3356 3ae3fccb439e
permissions -rw-r--r--
Frontend: * Hedgewars will now use a sub directory of "My Documents" like other games instead of "%userprofile%/.hedgewars" under Windows * Teams are now saved in ini format to allow easier addition of future stats/properties * Due to those changes old files/settings/teams will be ignored
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2685
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     1
//
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     2
//  MainMenuViewController.h
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     3
//  hwengine
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     4
//
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     5
//  Created by Vittorio on 08/01/10.
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     7
//
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     8
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     9
#import <UIKit/UIKit.h>
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    10
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    11
@interface MainMenuViewController : UIViewController {
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3029
diff changeset
    12
    UIView *cover;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3029
diff changeset
    13
    UILabel *versionLabel;
2685
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    14
}
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    15
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3029
diff changeset
    16
@property (nonatomic,retain) UIView *cover;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3029
diff changeset
    17
@property (nonatomic,retain) IBOutlet UILabel *versionLabel;
2685
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    18
3027
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 2743
diff changeset
    19
-(void) appear;
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 2743
diff changeset
    20
-(void) disappear;
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3029
diff changeset
    21
-(void) hideBehind;
3027
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 2743
diff changeset
    22
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3029
diff changeset
    23
-(IBAction) switchViews:(id)sender;
2685
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    24
@end