You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
[FYI] Ben.Marsh Original CL Desc ----------------------------------------------------------------- Horde: Add a typed HTTP client for communicating with the Horde server. Removes boilerplate code for getting an access token, configuring request objects, and parsing responses. Synchronous for now. [CL 30069215 by ben marsh in ue5-main branch]
13 lines
259 B
C#
13 lines
259 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.IO;
|
|
|
|
public class Horde : ModuleRules
|
|
{
|
|
public Horde(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(new string[] { "Core" });
|
|
}
|
|
}
|