-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustomGameMenuTableViewController.h
More file actions
33 lines (24 loc) · 1.01 KB
/
Copy pathCustomGameMenuTableViewController.h
File metadata and controls
33 lines (24 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//
// CustomGameMenuTableViewController.h
// gameBeforeDishes
//
// Created by Kent Walters on 2016-03-02.
// Copyright © 2016 bdong. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface CustomGameMenuTableViewController : UITableViewController
@property (weak, nonatomic) IBOutlet UILabel *numberOfPlayersLabel;
- (IBAction)stepperClicked:(id)sender;
- (IBAction)shuffleSwitch:(id)sender;
@property (weak, nonatomic) IBOutlet UIStepper *stepper;
- (IBAction)sliderSlid:(id)sender;
@property (weak, nonatomic) IBOutlet UISlider *slider;
- (IBAction)pointStepperClicked:(id)sender;
@property (weak, nonatomic) IBOutlet UILabel *pointsLabel;
@property (weak, nonatomic) IBOutlet UIStepper *pointStepper;
@property (weak, nonatomic) IBOutlet UILabel *gameSpeedLabel;
@property (weak, nonatomic) IBOutlet UISwitch *shuffleOrderSwitch;
@property (weak, nonatomic) IBOutlet UILabel *roundsPerMingameLabel;
- (IBAction)roundsPerMiniStepper:(id)sender;
@property (weak, nonatomic) IBOutlet UIStepper *roundsStepper;
@end