cocoaTouch/MainMenuViewController.h
author nemo
Sun, 24 Jan 2010 16:25:10 +0000
changeset 2708 84bf57349d46
parent 2687 28b8330b8af1
child 2740 03df0573a9fd
permissions -rw-r--r--
forgot Themes CMakeLists file
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
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
	UIButton *passandplayButton;
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    14
	UIButton *netplayButton;
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    15
	UIButton *storeButton;
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    16
	UILabel *versionLabel;
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
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    19
@property (nonatomic, retain) IBOutlet UIButton *passandplayButton;
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    20
@property (nonatomic, retain) IBOutlet UIButton *netplayButton;
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    21
@property (nonatomic, retain) IBOutlet UIButton *storeButton;
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    22
@property (nonatomic, retain) IBOutlet UILabel *versionLabel;
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    23
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    24
-(IBAction) startPlaying;
2687
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents: 2685
diff changeset
    25
-(IBAction) notYetImplemented;
2685
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    26
@end