cocoaTouch/MainMenuViewController.h
author smxx
Thu, 04 Feb 2010 20:45:03 +0000
changeset 2747 7889a3a9724f
parent 2743 39d097ac2276
child 3027 32890edaa483
permissions -rw-r--r--
Server: * Added support for flags (this still needs further adjustments to restore compatibility with older versions (team datasets)!) Engine: * Added support for flags * Added weapon tooltips * Moved SplitBySpace to uMisc * Set file operations to readonly to avoid conflicts running multiple copies networked and synced on one (fast) machine * Flash active team while green arrow is shown (waiting for input or camera centered on active hog) * Updated English locale Frontend: * Added support for flags * Added flag selection to edit team page * Added checkbox for weapon tooltips in options * "Random team" button may now be translated * Disabled "official server" button till protocol is handled for all versions (see above; nemo's server is updated to new protocol) Graphics: * Added basic set of example flags
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>
2740
03df0573a9fd programmatically load main controller
koda
parents: 2687
diff changeset
    10
#import "SettingsViewController.h"
2685
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    11
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    12
@interface MainMenuViewController : UIViewController {
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    13
	UILabel *versionLabel;
2743
39d097ac2276 implement transition in the way i had in mind
koda
parents: 2740
diff changeset
    14
	UIView *mainView;
2740
03df0573a9fd programmatically load main controller
koda
parents: 2687
diff changeset
    15
	SettingsViewController *settingsViewController;
2685
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    16
}
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    17
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    18
@property (nonatomic, retain) IBOutlet UILabel *versionLabel;
2743
39d097ac2276 implement transition in the way i had in mind
koda
parents: 2740
diff changeset
    19
@property (nonatomic, retain) IBOutlet UIView *mainView;
2740
03df0573a9fd programmatically load main controller
koda
parents: 2687
diff changeset
    20
@property (nonatomic, retain) SettingsViewController *settingsViewController;
2685
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    21
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    22
-(IBAction) startPlaying;
2687
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents: 2685
diff changeset
    23
-(IBAction) notYetImplemented;
2740
03df0573a9fd programmatically load main controller
koda
parents: 2687
diff changeset
    24
-(IBAction) switchViews:(id)sender;
2685
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    25
@end