EM_Task/UnrealEd/Private/Commandlets/DumpBlueprintsInfoCommandlet.cpp

24 lines
931 B
C++
Raw Permalink Normal View History

2026-02-13 16:18:33 +08:00
// Copyright Epic Games, Inc. All Rights Reserved.
#include "Commandlets/DumpBlueprintsInfoCommandlet.h"
#include "Logging/LogMacros.h"
DEFINE_LOG_CATEGORY_STATIC(LogBlueprintInfoDump, Log, All);
/*******************************************************************************
* UDumpBlueprintsInfoCommandlet
******************************************************************************/
//------------------------------------------------------------------------------
UDumpBlueprintsInfoCommandlet::UDumpBlueprintsInfoCommandlet(FObjectInitializer const& ObjectInitializer)
: Super(ObjectInitializer)
{
}
//------------------------------------------------------------------------------
int32 UDumpBlueprintsInfoCommandlet::Main(FString const& Params)
{
UE_LOG(LogBlueprintInfoDump, Error, TEXT("DumpBlueprintsInfo has been removed - consider using the GenerateBlueprintAPI commandlet instead\n"));
return 0;
}