Files
UnrealEngine/Engine/Source/Programs/Unsync/Private/UnsyncCmdInfo.h
2025-05-18 13:04:45 +08:00

23 lines
375 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "UnsyncCommon.h"
namespace unsync {
struct FSyncFilter;
struct FCmdInfoOptions
{
FPath InputA;
FPath InputB;
bool bListFiles = false;
const FSyncFilter* SyncFilter = nullptr;
bool bDecode = false;
};
int32 CmdInfo(const FCmdInfoOptions& Options);
} // namespace unsync