InputCommon / DolphinQt / Core: Add a "RelativeMouse" input which provides the raw delta mouse input

Co-authored-by: Jordan Woyak <jordan.woyak@gmail.com>
This commit is contained in:
iwubcode
2021-03-17 20:58:33 -05:00
co-authored by Jordan Woyak
parent 679d51c289
commit db4b4e40cb
10 changed files with 165 additions and 5 deletions
@@ -93,6 +93,12 @@ public:
virtual bool IsChild(const Input*) const { return false; }
};
class RelativeInput : public Input
{
public:
bool IsDetectable() const override { return false; }
};
//
// Output
//