14 lines
357 B
C++
14 lines
357 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
class IAsyncPackageLoader;
|
|
class FIoDispatcher;
|
|
class IEDLBootNotificationManager;
|
|
|
|
#if WITH_IOSTORE_IN_EDITOR
|
|
TUniquePtr<IAsyncPackageLoader> MakeEditorPackageLoader(FIoDispatcher& InIoDispatcher, IEDLBootNotificationManager& InEDLBootNotificationManager);
|
|
#endif
|