19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#include "config.h"
#import "OHGameControllerEmulatedTriggerButton.h"
#import "OHGameControllerAxis.h"
@implementation OHGameControllerEmulatedTriggerButton
- (instancetype)initWithName: (OFString *)name
{
OF_INVALID_INIT_METHOD
}
- (instancetype)initWithName: (OFString *)name
axis: (OHGameControllerAxis *)axis
|
>
>
|
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#include "config.h"
#import "OHGameControllerEmulatedTriggerButton.h"
#import "OHGameControllerAxis.h"
@implementation OHGameControllerEmulatedTriggerButton
@synthesize axis = _axis;
- (instancetype)initWithName: (OFString *)name
{
OF_INVALID_INIT_METHOD
}
- (instancetype)initWithName: (OFString *)name
axis: (OHGameControllerAxis *)axis
|