diff options
| author | Aetias <aetias@outlook.com> | 2024-04-06 16:38:55 +0200 |
|---|---|---|
| committer | Aetias <aetias@outlook.com> | 2024-04-06 16:38:55 +0200 |
| commit | dcf4270939e6ee0e54a332e2209a3baa0ad28fda (patch) | |
| tree | c25c4350e01d6a6a62c56a3e0be1e098a0680061 /src/00_Core/Player/TouchGesture.cpp | |
| parent | 336defc99509c1cf5ccb18143c0891abd10054a4 (diff) | |
Add `TouchGesture`
Diffstat (limited to 'src/00_Core/Player/TouchGesture.cpp')
| -rw-r--r-- | src/00_Core/Player/TouchGesture.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/00_Core/Player/TouchGesture.cpp b/src/00_Core/Player/TouchGesture.cpp new file mode 100644 index 00000000..83879415 --- /dev/null +++ b/src/00_Core/Player/TouchGesture.cpp @@ -0,0 +1,13 @@ +#include "Player/TouchGesture.hpp" + +#ifdef STUBS + +TouchGesture::TouchGesture() {} +void TouchGesture::ResetTouchHistory() {} +void TouchGesture::Update(void *param1) {} +TouchGesture::~TouchGesture() {} + +void TouchGestureBase::ResetTouchHistory() {} +TouchGestureBase::~TouchGestureBase() {} + +#endif STUBS |
