October3d55/M/LGUI/Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabRawDataViewer.h

21 lines
508 B
C
Raw Normal View History

2025-03-10 09:43:27 +08:00
// 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;
};