// Copyright Epic Games, Inc. All Rights Reserved.
namespace EpicGames.Horde.Agents
{
///
/// Standard resource names
///
public static class KnownResourceNames
{
///
/// Number of logical cores including SMT cores (hyper-threading)
///
public const string LogicalCores = "LogicalCores";
///
/// Number of physical cores
///
public const string PhysicalCores = "PhysicalCores";
///
/// Amount of RAM, in GB
///
public const string Ram = "RAM";
}
}