blob: b1a06ef159b7f318c8f5d2dac0da3e278a273211 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "remoteprojectstore.h"
namespace zen {
struct FileRemoteStoreOptions : RemoteStoreOptions
{
std::filesystem::path FolderPath;
std::string Name;
bool ForceDisableBlocks = false;
bool ForceEnableTempBlocks = false;
};
std::unique_ptr<RemoteProjectStore> CreateFileRemoteStore(const FileRemoteStoreOptions& Options);
} // namespace zen
|