Files
UnrealEngine/Engine/Source/Programs/BuildPatchTool/Public/ToolModes/AutomationMode.h
2025-05-18 13:04:45 +08:00

19 lines
328 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Interfaces/ToolMode.h"
#if !UE_BUILD_SHIPPING
namespace BuildPatchTool
{
class FAutomationToolModeFactory
{
public:
static IToolModeRef Create(IBuildPatchServicesModule& BpsInterface);
};
}
#endif // !UE_BUILD_SHIPPING