240
241
242
243
244
245
246
247
248
249
250
251
252
253
|
#elif defined(OF_NINTENDO_DS)
OFMutableSet *_pressedButtons;
#elif defined(OF_NINTENDO_3DS)
OFMutableSet *_pressedButtons;
OFPoint _leftAnalogStickPosition;
#elif defined(OF_WINDOWS)
DWORD _index;
OFMutableSet *_pressedButtons;
OFPoint _leftAnalogStickPosition, _rightAnalogStickPosition;
float _ZLPressure, _ZRPressure;
#endif
}
#ifdef OF_HAVE_CLASS_PROPERTIES
|
>
|
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
|
#elif defined(OF_NINTENDO_DS)
OFMutableSet *_pressedButtons;
#elif defined(OF_NINTENDO_3DS)
OFMutableSet *_pressedButtons;
OFPoint _leftAnalogStickPosition;
#elif defined(OF_WINDOWS)
DWORD _index;
OFNumber *_Nullable _vendorID, *_Nullable productID;
OFMutableSet *_pressedButtons;
OFPoint _leftAnalogStickPosition, _rightAnalogStickPosition;
float _ZLPressure, _ZRPressure;
#endif
}
#ifdef OF_HAVE_CLASS_PROPERTIES
|