Files
UnrealEngine/Engine/Source/Programs/AutomationTool/Gauntlet/SelfTest/Gauntlet.SelfTest.Globals.cs
2025-05-18 13:04:45 +08:00

38 lines
605 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.IO;
namespace Gauntlet.SelfTest
{
public class Globals
{
public string DeviceDevkitName { get; protected set; }
private static Globals _Instance;
protected Globals()
{
DeviceDevkitName = "AndrewGNeo";
}
public static Globals Instance
{
get
{
if (_Instance == null)
{
_Instance = new Globals();
}
return _Instance;
}
}
public static string TempDir
{
get { return Path.Combine(Gauntlet.Globals.TempDir, "SelfTest"); }
}
}
}