Files
UnrealEngineUWP/Engine/Plugins/Animation/AnimationLocomotionLibrary/Source/Runtime/Private/AnimationLocomotionLibraryModule.cpp
henrik karlsson bbc37aa2f5 [Engine/Plugins]
* Another batch iwyu updates to reduce number of includes used in files

#preflight 63c58d742e714f64ade93797
#rb none

[CL 23732856 by henrik karlsson in ue5-main branch]
2023-01-16 17:04:48 -05:00

21 lines
448 B
C++

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