You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
* Ordered file list results in manfiests that can themselves be chunked and incrementally downloaded * Add a command line parameter to specify storage location for pack command [CL 29354873 by yuriy odonnell in ue5-main branch]
22 lines
378 B
C++
22 lines
378 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "UnsyncCommon.h"
|
|
#include "UnsyncCore.h"
|
|
|
|
namespace unsync {
|
|
|
|
struct FCmdPackOptions
|
|
{
|
|
FPath RootPath;
|
|
FPath P4HavePath; // optional
|
|
FPath StorePath; // optional
|
|
uint32 BlockSize = uint32(64_KB);
|
|
FAlgorithmOptions Algorithm;
|
|
};
|
|
|
|
int32 CmdPack(const FCmdPackOptions& Options);
|
|
|
|
}
|