blob: 68d1eb71ecf80ba58a5dcad32e044028cb5fb521 (
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;
bool ForceEnableTempBlocks;
};
std::unique_ptr<RemoteProjectStore> CreateFileRemoteStore(const FileRemoteStoreOptions& Options);
} // namespace zen
|