22 lines
383 B
C++
22 lines
383 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Widgets/Layout/SBorder.h"
|
|
#include "SWarningOrErrorBox.h"
|
|
|
|
#define UE_API TOOLWIDGETS_API
|
|
|
|
class SRichTextWarningOrErrorBox : public SWarningOrErrorBox
|
|
{
|
|
public:
|
|
|
|
UE_API void Construct(const FArguments& InArgs);
|
|
|
|
private:
|
|
TAttribute<EMessageStyle> MessageStyle;
|
|
};
|
|
|
|
#undef UE_API
|