21 lines
508 B
C
21 lines
508 B
C
|
|
// Copyright 2019-Present LexLiu. All Rights Reserved.
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "CoreMinimal.h"
|
||
|
|
#include "Widgets/SCompoundWidget.h"
|
||
|
|
|
||
|
|
class FLGUIPrefabEditor;
|
||
|
|
|
||
|
|
class SLGUIPrefabRawDataViewer : public SCompoundWidget
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
SLATE_BEGIN_ARGS(SLGUIPrefabRawDataViewer) {}
|
||
|
|
SLATE_END_ARGS()
|
||
|
|
|
||
|
|
void Construct(const FArguments& InArgs, TSharedPtr<FLGUIPrefabEditor> InPrefabEditorPtr, UObject* InObject);
|
||
|
|
private:
|
||
|
|
TWeakPtr<FLGUIPrefabEditor> PrefabEditorPtr;
|
||
|
|
TSharedPtr<IDetailsView> DescriptorDetailView;
|
||
|
|
};
|