You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb trivial #rnx #ROBOMERGE-SOURCE: CL 17059447 in //UE5/Main/... #ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v850-17047176) [CL 17059463 by joe kirchoff in ue5-release-engine-test branch]
18 lines
278 B
C#
18 lines
278 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace UnrealBuildTool
|
|
{
|
|
abstract class ActionExecutor
|
|
{
|
|
public abstract string Name
|
|
{
|
|
get;
|
|
}
|
|
|
|
public abstract bool ExecuteActions(List<LinkedAction> ActionsToExecute);
|
|
}
|
|
|
|
}
|