2015-08-25 18:34:10 +00:00
|
|
|
//
|
|
|
|
// Created by Lounge Katt on 8/25/15.
|
|
|
|
// Copyright (c) 2015 reicast. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
2021-08-12 09:22:22 +00:00
|
|
|
#import "FlycastViewController.h"
|
2015-08-25 18:34:10 +00:00
|
|
|
|
2021-08-12 09:22:22 +00:00
|
|
|
@interface PadViewController : UIViewController
|
2015-08-25 18:34:10 +00:00
|
|
|
|
2021-08-10 09:32:22 +00:00
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *joystick;
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *joystickBackground;
|
|
|
|
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *joyXConstraint;
|
|
|
|
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *joyYConstraint;
|
2015-08-25 18:34:10 +00:00
|
|
|
|
2021-08-12 09:22:22 +00:00
|
|
|
@property (nonatomic, strong) FlycastViewController *handler;
|
2015-09-01 03:47:58 +00:00
|
|
|
|
2015-08-25 18:34:10 +00:00
|
|
|
- (void) showController:(UIView *)parentView;
|
|
|
|
- (void) hideController;
|
|
|
|
- (BOOL) isControllerVisible;
|
|
|
|
|
|
|
|
@end
|