You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
23 lines
375 B
C++
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
|