Files
UnrealEngineUWP/Engine/Plugins/Animation/AnimationLocomotionLibrary/Source/Runtime/Private/AnimationLocomotionLibraryModule.cpp
koray hagen 104e725750 Fixed a packaging issue causing AnimationLocomotion runtime module to not be found in QAGame
#rb aaron.cox

#ROBOMERGE-AUTHOR: koray.hagen
#ROBOMERGE-SOURCE: CL 17636910 in //UE5/Main/...
#ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v874-17637634)
#ROBOMERGE[STARSHIP]: UE5-Release-Engine-Staging Release-5.0

[CL 17637715 by koray hagen in ue5-release-engine-test branch]
2021-09-27 19:14:38 -04:00

19 lines
412 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "AnimationLocomotionLibraryModule.h"
#define LOCTEXT_NAMESPACE "AnimationLocomotionModule"
void FAnimationLocomotionLibraryRuntimeModule::StartupModule()
{
}
void FAnimationLocomotionLibraryRuntimeModule::ShutdownModule()
{
}
#undef LOCTEXT_NAMESPACE
IMPLEMENT_MODULE(FAnimationLocomotionLibraryRuntimeModule, AnimationLocomotionLibraryRuntime)