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