You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb none #ROBOMERGE-AUTHOR: benoit.deschenes #ROBOMERGE-SOURCE: CL 18389990 in //UE5/Release-5.0/... via CL 18390011 #ROBOMERGE-BOT: STARSHIP (Release-Engine-Staging -> Release-Engine-Test) (v896-18170469) [CL 18390016 by benoit deschenes in ue5-release-engine-test branch]
20 lines
394 B
C++
20 lines
394 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreTypes.h"
|
|
#include "Templates/SharedPointer.h"
|
|
|
|
|
|
class IDatasmithElement;
|
|
class IDatasmithScene;
|
|
|
|
namespace DirectLink
|
|
{
|
|
class FSceneSnapshot;
|
|
|
|
DIRECTLINK_API const FString& GetDumpPath();
|
|
|
|
DIRECTLINK_API void DumpSceneSnapshot(FSceneSnapshot& SceneSnapshot, const FString& BaseFileName);
|
|
} // namespace DirectLink
|