21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
OF_ASSUME_NONNULL_BEGIN
@interface OHWiiGameController: OHGameController
{
int32_t _index;
uint32_t _type;
id <OHGameControllerProfile> _rawProfile;
}
- (instancetype)initWithIndex: (int32_t)index type: (uint32_t)type;
@end
OF_ASSUME_NONNULL_END
|
|
|
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
OF_ASSUME_NONNULL_BEGIN
@interface OHWiiGameController: OHGameController
{
int32_t _index;
uint32_t _type;
id <OHGameControllerProfile> _profile;
}
- (instancetype)initWithIndex: (int32_t)index type: (uint32_t)type;
@end
OF_ASSUME_NONNULL_END
|