You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
16 lines
548 B
C
16 lines
548 B
C
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "Animation/AnimData/IAnimationDataController.h"
|
||
|
|
#include "Modules/ModuleInterface.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;
|
||
|
|
};
|