-
Notifications
You must be signed in to change notification settings - Fork 0
/
ASMainViewController.h
58 lines (36 loc) · 1.22 KB
/
ASMainViewController.h
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//
//
//
//
// Created by Alex on 4/7/13.
// Copyright (c) 2013 AlexSem. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "ASPlayParentViewController.h"
typedef enum AnimationType {
SSAnimationMove,
SSAnimationRotation,
SSAnimationSlide,
} tAnimationType;
typedef enum LevetType{
SSChild,
SSTeen,
SSRanger,
} tLevelType;
@interface ASMainViewController : UIViewController
@property (strong, nonatomic) IBOutlet UIView *mView;
@property (weak, nonatomic) IBOutlet UIButton *btnMove;
@property (weak, nonatomic) IBOutlet UIButton *btnRotation;
@property (weak, nonatomic) IBOutlet UIButton *btnSlide;
@property (weak, nonatomic) IBOutlet UIButton *btnSlideleft;
@property (weak, nonatomic) IBOutlet UIButton *btnMoveUp;
@property (weak, nonatomic) IBOutlet UITextField *txtDelta;
@property (weak, nonatomic) IBOutlet UIStepper *stepper;
@property (weak, nonatomic) IBOutlet UIView *mainView;
- (IBAction)btnPlayClick:(id)sender;
- (IBAction)stClicked:(id)sender;
- (IBAction)btnAnimationClicked:(UIButton *)sender;
@property (weak, nonatomic) IBOutlet UIButton *btnChildlevel;
@property (weak, nonatomic) IBOutlet UIButton *btnRangerLevel;
- (IBAction)btnLevelClicked:(UIButton *)sender;
@end