You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb jeanfrancois.dube, patrick.enfedaque [CL 14597717 by Richard Malo in ue5-main branch]
18 lines
395 B
C++
18 lines
395 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "SSceneOutliner.h"
|
|
|
|
class SDataLayerOutliner : public SSceneOutliner
|
|
{
|
|
public:
|
|
void Construct(const FArguments& InArgs, const FSceneOutlinerInitializationOptions& InitOptions)
|
|
{
|
|
SSceneOutliner::Construct(InArgs, InitOptions);
|
|
}
|
|
|
|
SDataLayerOutliner() {}
|
|
virtual ~SDataLayerOutliner() {}
|
|
}; |