Removes unused IRecognizerMock.h from Gems/Gestures
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
@@ -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));
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user