24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
@class OHGameControllerAxis;
OF_SUBCLASSING_RESTRICTED
@interface OHGameControllerEmulatedTriggerButton: OHGameControllerButton
{
OHGameControllerAxis *_axis;
}
- (instancetype)initWithName: (OFString *)name OF_UNAVAILABLE;
- (instancetype)initWithName: (OFString *)name
axis: (OHGameControllerAxis *)axis;
@end
OF_ASSUME_NONNULL_END
|
>
>
|
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
@class OHGameControllerAxis;
OF_SUBCLASSING_RESTRICTED
@interface OHGameControllerEmulatedTriggerButton: OHGameControllerButton
{
OHGameControllerAxis *_axis;
}
@property (readonly, nonatomic) OHGameControllerAxis *axis;
- (instancetype)initWithName: (OFString *)name OF_UNAVAILABLE;
- (instancetype)initWithName: (OFString *)name
axis: (OHGameControllerAxis *)axis;
@end
OF_ASSUME_NONNULL_END
|