Files
UnrealEngineUWP/Engine/Plugins/Animation/AnimationLocomotionLibrary/Source/Runtime/Private/AnimationLocomotionLibraryModule.cpp

19 lines
412 B
C++
Raw Normal View History

// 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)