// 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 InPrefabEditorPtr, UObject* InObject); private: TWeakPtr PrefabEditorPtr; TSharedPtr DescriptorDetailView; };