You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb wouter.burgers #preflight 6345cc19f93be0f63415d1df [CL 22491713 by marco anastasi in ue5-main branch]
17 lines
344 B
C++
17 lines
344 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Widgets/Layout/SBorder.h"
|
|
#include "SWarningOrErrorBox.h"
|
|
|
|
class TOOLWIDGETS_API SRichTextWarningOrErrorBox : public SWarningOrErrorBox
|
|
{
|
|
public:
|
|
|
|
void Construct(const FArguments& InArgs);
|
|
|
|
private:
|
|
TAttribute<EMessageStyle> MessageStyle;
|
|
}; |