EM_Task/UnrealEd/Classes/Commandlets/FixConflictingLocalizationKeys.h
Boshuang Zhao 5144a49c9b add
2026-02-13 16:18:33 +08:00

22 lines
542 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);
};