You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#preflight 61411c7cb5a4fa0001184cbe #rb Zousar.Shaker #rnx [CL 17552582 by Joe Kirchoff in ue5-main branch]
24 lines
541 B
C++
24 lines
541 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "IRemoteExecutor.h"
|
|
|
|
|
|
namespace UE::RemoteExecution
|
|
{
|
|
class FDefaultRemoteExecutor : public IRemoteExecutor
|
|
{
|
|
public:
|
|
virtual FName GetFName() const override;
|
|
virtual FText GetNameText() const override;
|
|
virtual FText GetDescriptionText() const override;
|
|
|
|
virtual bool CanRemoteExecute() const override;
|
|
|
|
virtual IContentAddressableStorage* GetContentAddressableStorage() const;
|
|
virtual IExecution* GetExecution() const;
|
|
};
|
|
}
|