You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Fix crash related to GC + harden reset with some Latent commands after they timed out #preflight 6422f54b803cb466e851e734 #jira UE-181463 #rb Chris.Constantinescu [CL 24870636 by Jerome Delattre in ue5-main branch]
19 lines
431 B
C++
19 lines
431 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
class IStepExecutor;
|
|
class FDriverConfiguration;
|
|
class FAutomatedApplication;
|
|
|
|
class FStepExecutorFactory
|
|
{
|
|
public:
|
|
|
|
static TSharedRef<IStepExecutor, ESPMode::ThreadSafe> Create(
|
|
const TSharedRef<FDriverConfiguration, ESPMode::ThreadSafe>& Configuration,
|
|
const TSharedRef<FAutomatedApplication, ESPMode::ThreadSafe>& Application);
|
|
|
|
};
|