You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rnx #rb pj.kack #preflight 61f3c7e0da54035207f6c79f #ROBOMERGE-AUTHOR: carlmagnus.nordin #ROBOMERGE-SOURCE: CL 18770247 in //UE5/Release-5.0/... via CL 18770252 via CL 18770332 #ROBOMERGE-BOT: UE5 (Release-Engine-Test -> Main) (v903-18687472) [CL 18770334 by carlmagnus nordin in ue5-main branch]
21 lines
381 B
C++
21 lines
381 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
#if WITH_COTF
|
|
|
|
#include "IO/PackageStore.h"
|
|
|
|
class FIoDispatcher;
|
|
|
|
namespace UE { namespace Cook
|
|
{
|
|
class ICookOnTheFlyServerConnection;
|
|
}}
|
|
|
|
TSharedPtr<IPackageStore> MakeCookOnTheFlyPackageStore(UE::Cook::ICookOnTheFlyServerConnection& CookOnTheFlyServerConnection);
|
|
|
|
#endif // WITH_COTF
|