Files
UnrealEngineUWP/Engine/Source/Developer/AnimationDataController/Public/IAnimationDataControllerModule.h
henrik karlsson 8f895fef35 Added includes needed after removing includes in headers
#preflight 6360b63e41625be270a6e464
#rb none

[CL 22888775 by henrik karlsson in ue5-main branch]
2022-11-01 15:14:15 -04:00

17 lines
577 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Animation/AnimData/IAnimationDataController.h"
#include "Modules/ModuleInterface.h"
#include "UObject/Package.h"
class UAnimSequence;
class UAnimSequenceBase;
class IAnimationDataControllerModule : public IModuleInterface
{
public:
/** Returns UAnimationDataController instance, with optional outer, wrapped in a TScriptInterface of its implement IAnimationDataController interface */
virtual TScriptInterface<IAnimationDataController> GetController(UObject* Outer = GetTransientPackage()) = 0;
};