diff options
author | german <german@thesoftwareartisans.com> | 2020-07-10 21:20:50 -0500 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-09-29 10:38:25 -0400 |
commit | ab88c2f6112edba35bfa91ee8864e760728d16e8 (patch) | |
tree | 4c7647f97153276733896cbc6e35d929db926b82 /src/core/frontend/input.h | |
parent | a8be822e8eb5cda83b09bcf6c1478b8bef2f2caf (diff) |
First implementation of controller rumble
Diffstat (limited to 'src/core/frontend/input.h')
-rw-r--r-- | src/core/frontend/input.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/frontend/input.h b/src/core/frontend/input.h index 9da0d28297..277b70e53b 100644 --- a/src/core/frontend/input.h +++ b/src/core/frontend/input.h @@ -33,6 +33,9 @@ public: virtual bool GetAnalogDirectionStatus(AnalogDirection direction) const { return {}; } + virtual bool SetRumblePlay(f32 amp_high, f32 amp_low, f32 freq_high, f32 freq_low) const { + return {}; + } }; /// An abstract class template for a factory that can create input devices. |