Files
o3de/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphNode.h
T
Steve Pham 38261d0800 Shorten copyright headers by splitting into 2 lines (#2213)
* Updated all copyright headers to split the longer original copyright line into 2 shorter lines

Signed-off-by: Steve Pham <spham@amazon.com>
2021-07-16 15:25:48 -07:00

23 lines
839 B
C++

/*
* 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
*
*/
namespace EMotionFX
{
class AnimGraphNode
: public AnimGraphObject
{
public:
AZ_RTTI(AnimGraphNode, "{7F1C0E1D-4D32-4A6D-963C-20193EA28F95}", AnimGraphObject)
MOCK_CONST_METHOD1(CollectOutgoingConnections, void(AZStd::vector<AZStd::pair<BlendTreeConnection*, AnimGraphNode*>>& outConnections));
MOCK_CONST_METHOD2(CollectOutgoingConnections, void(AZStd::vector<AZStd::pair<BlendTreeConnection*, AnimGraphNode*>>& outConnections, const uint32 portIndex));
MOCK_CONST_METHOD1(FindOutputPortIndex, uint32(const AZStd::string& name));
};
} // namespace EMotionFX