20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#import "OHGameControllerButton.h"
OF_ASSUME_NONNULL_BEGIN
@class OHGameControllerAxis;
OF_SUBCLASSING_RESTRICTED
@interface OHGameControllerEmulatedTriggerButton: OHGameControllerButton
{
OHGameControllerAxis *_axis;
}
@property (readonly, nonatomic) OHGameControllerAxis *axis;
- (instancetype)initWithName: (OFString *)name OF_UNAVAILABLE;
|
|
|
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#import "OHGameControllerButton.h"
OF_ASSUME_NONNULL_BEGIN
@class OHGameControllerAxis;
OF_SUBCLASSING_RESTRICTED
@interface OHEmulatedGameControllerTriggerButton: OHGameControllerButton
{
OHGameControllerAxis *_axis;
}
@property (readonly, nonatomic) OHGameControllerAxis *axis;
- (instancetype)initWithName: (OFString *)name OF_UNAVAILABLE;
|