Files
UnrealEngine/Engine/Source/Programs/AutomationTool/Gauntlet/Unreal/Automation/UE.FastCookByTheBook.cs
2025-05-18 13:04:45 +08:00

23 lines
471 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using Gauntlet;
namespace UE
{
public class FastCookByTheBook : CookByTheBook
{
public FastCookByTheBook(UnrealTestContext InContext) : base(InContext)
{
BaseEditorCommandLine += " -fastcook";
}
protected override ContentFolder GetExpectedCookedContent()
{
ContentFolder CookedContent = base.GetExpectedCookedContent();
CookedContent.Files.Add("Fastcook.txt");
return CookedContent;
}
}
}