21 lines
448 B
C++
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)
|