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

19 lines
287 B
C
Raw Normal View History

// Copyright Epic Games, Inc. All Rights Reserved.
#include "UnsyncCommon.h"
#include "UnsyncRemote.h"
#include <string>
namespace unsync {
struct FCmdQueryOptions
{
std::string Query;
FRemoteDesc Remote;
};
int32 CmdQuery(const FCmdQueryOptions& Options);
} // namespace unsync