You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-152930 #rb jurre.debaare #preflight https://horde.devtools.epicgames.com/job/63190886980179553e98e57f [CL 21863555 by jack cai in ue5-main branch]
24 lines
547 B
C++
24 lines
547 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Modules/ModuleInterface.h"
|
|
#include "AssetRegistry/AssetData.h"
|
|
|
|
DECLARE_LOG_CATEGORY_EXTERN(LogAnimationSettings, Log, All);
|
|
|
|
class FAnimationSettingsModule : public IModuleInterface
|
|
{
|
|
public:
|
|
|
|
// IModuleInterface interface
|
|
virtual void StartupModule() override;
|
|
virtual void ShutdownModule() override;
|
|
|
|
private:
|
|
static void OnAssetRenamed(const FAssetData& InAssetData, const FString& InOldName);
|
|
|
|
FDelegateHandle OnAssetRenamedHandle;
|
|
};
|
|
|