Files
UnrealEngine/Engine/Source/Editor/UnrealEd/Classes/Commandlets/FixConflictingLocalizationKeys.h
2025-05-18 13:04:45 +08:00

23 lines
538 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "UObject/ObjectMacros.h"
#include "Commandlets/Commandlet.h"
#include "FixConflictingLocalizationKeys.generated.h"
/**
* Internal commandlet to fix any conflicting localization keys that are found in a manifest.
* @note Hard-coded to work with the "Game" localization target.
*/
UCLASS()
class UFixConflictingLocalizationKeysCommandlet : public UCommandlet
{
GENERATED_BODY()
public:
virtual int32 Main(const FString& Params);
};