diff options
author | punto- <puntob@gmail.com> | 2020-04-20 03:06:03 -0300 |
---|---|---|
committer | punto- <puntob@gmail.com> | 2020-04-29 09:11:14 +0200 |
commit | 41a7d070957d7cbe24f1f0daa36e7d5f5318c1e5 (patch) | |
tree | 9f84236d16736e6600cdb8632cd15d79aec04990 /core | |
parent | a17bdb10a938e21901fb65984f38debb01f03f7b (diff) |
Input: make VibrationInfo protected to allow implementors to use it
Diffstat (limited to 'core')
-rw-r--r-- | core/input/input.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/core/input/input.h b/core/input/input.h index 477de1e879..2e136dbf02 100644 --- a/core/input/input.h +++ b/core/input/input.h @@ -127,15 +127,6 @@ private: int mouse_from_touch_index; - struct VibrationInfo { - float weak_magnitude; - float strong_magnitude; - float duration; // Duration in seconds - uint64_t timestamp; - }; - - Map<int, VibrationInfo> joy_vibration; - struct SpeedTrack { uint64_t last_tick; @@ -232,6 +223,15 @@ private: EventDispatchFunc event_dispatch_function; protected: + struct VibrationInfo { + float weak_magnitude; + float strong_magnitude; + float duration; // Duration in seconds + uint64_t timestamp; + }; + + Map<int, VibrationInfo> joy_vibration; + static void _bind_methods(); public: |