Removes unused IRecognizerMock.h from Gems/Gestures

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2021-12-23 12:45:55 -08:00
parent 94fa49da49
commit b982d5627b
@@ -1,25 +0,0 @@
/*
* Copyright (c) Contributors to the Open 3D Engine Project.
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#include <Gestures/IGestureRecognizer.h>
namespace Gestures
{
class RecognizerMock
: public IRecognizer
{
public:
MOCK_CONST_METHOD0(GetPriority,
int32_t());
MOCK_METHOD2(OnPressedEvent,
bool(const Vec2&screenPositionPixels, uint32_t pointerIndex));
MOCK_METHOD2(OnDownEvent,
bool(const Vec2&screenPositionPixels, uint32_t pointerIndex));
MOCK_METHOD2(OnReleasedEvent,
bool(const Vec2&screenPositionPixels, uint32_t pointerIndex));
};
}