Files
UnrealEngineUWP/Engine/Source/Developer/AnimationDataController/Private/AnimationDataControllerModule.cpp
jurre debaare 28d13baa0f Non-unity fixes
#rb none
#jira UE-112361, UE-112360, UE-112359

#ROBOMERGE-OWNER: jurre.debaare
#ROBOMERGE-AUTHOR: jurre.debaare
#ROBOMERGE-SOURCE: CL 15873528 in //UE5/Release-5.0-EarlyAccess/...
#ROBOMERGE-BOT: STARSHIP (Release-5.0-EarlyAccess -> Main) (v786-15839533)
#ROBOMERGE-CONFLICT from-shelf

[CL 15873660 by jurre debaare in ue5-main branch]
2021-03-31 08:26:49 -04:00

17 lines
606 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "IAnimationDataControllerModule.h"
#include "AnimDataController.h"
#include "Modules/ModuleManager.h"
class FAnimationDataControllerModule : public IAnimationDataControllerModule
{
virtual TScriptInterface<IAnimationDataController> GetController(UObject* Outer = GetTransientPackage()) override
{
check(Outer);
UAnimDataController* AnimController = NewObject<UAnimDataController>(Outer);
return TScriptInterface<IAnimationDataController>(AnimController);
}
};
IMPLEMENT_MODULE(FAnimationDataControllerModule, AnimationDataController);