Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

21 lines
781 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "NiagaraCommon.h"
#include "NiagaraMessages.h"
#include "ViewModels/Stack/NiagaraStackEntry.h"
class INiagaraMessage;
namespace FNiagaraMessageUtilities
{
FText MakePostCompileSummaryText(const FText& CompileObjectNameText, ENiagaraScriptCompileStatus LatestCompileStatus, const int32& WarningCount, const int32& ErrorCount);
UNiagaraStackEntry::FStackIssue MessageToStackIssue(TSharedRef<const INiagaraMessage> InMessage, FString InStackEditorDataKey);
UNiagaraStackEntry::FStackIssue StackMessageToStackIssue(const FNiagaraStackMessage& InMessage, FString InStackEditorDataKey, const TArray<FLinkNameAndDelegate>& InLinks);
FText GetShortDescriptionFromSeverity(EStackIssueSeverity Severity);
}