EM_Task/UnrealEd/Public/Commandlets/ExtractLocResCommandlet.h

20 lines
433 B
C
Raw Permalink Normal View History

2026-02-13 16:18:33 +08:00
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Commandlets/Commandlet.h"
#include "ExtractLocResCommandlet.generated.h"
/**
* Commandlet to extract the localization data from a binary LocRes file and dump it as human readable CSV.
*/
UCLASS()
class UExtractLocResCommandlet: public UCommandlet
{
GENERATED_BODY()
public:
virtual int32 Main(const FString& Params);
};