Files
UnrealEngineUWP/Engine/Source/Programs/Unsync/Private/UnsyncCmdMount.h

17 lines
208 B
C
Raw Normal View History

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "UnsyncCommon.h"
namespace unsync {
struct FCmdMountOptions
{
FPath Path;
};
int32 CmdMount(const FCmdMountOptions& Options);
}