Differences From Artifact [6c2895c0ea]:
- File
src/hid/OHEvdevExtendedGamepad.h
— part of check-in
[998339ff24]
at
2024-06-09 11:43:49
on branch trunk
— OHGamepad: Move some elements to OHExtendedGamepad
This allows to have a profile for limited gamepads such as found on the
Nintendo DS rather than only having the raw profile for those. (user: js, size: 1049) [annotate] [blame] [check-ins using]
To Artifact [b25eb5bac7]:
- File src/hid/OHEvdevExtendedGamepad.h — part of check-in [8be13b6bc6] at 2024-06-09 15:12:03 on branch trunk — ObjFWHID: Make OHGameControllerProfile a protocol (user: js, size: 1032) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
18 19 20 21 22 23 24 | */ #import "OHExtendedGamepad.h" OF_ASSUME_NONNULL_BEGIN @class OHEvdevGameController; | < | | | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | */ #import "OHExtendedGamepad.h" OF_ASSUME_NONNULL_BEGIN @class OHEvdevGameController; @interface OHEvdevExtendedGamepad: OFObject <OHExtendedGamepad> { id <OHGameControllerProfile> _rawProfile; } - (instancetype)initWithController: (OHEvdevGameController *)controller; @end OF_ASSUME_NONNULL_END |