// Copyright Epic Games, Inc. All Rights Reserved. #pragma once #include "Delegates/DelegateCombinations.h" #include "GenericPlatform/GenericPlatformMisc.h" #include "Internationalization/Text.h" class SWindow; class SWidget; // Largely a copy of UnrealEd Dialogs.h DECLARE_DELEGATE_TwoParams(FOnMsgDlgResult, const TSharedRef&, EAppReturnType::Type); EAppReturnType::Type OpenModalMessageDialog_Internal(EAppMsgCategory InMessageCategory, EAppMsgType::Type InMessageType, const FText& InMessage, const FText& InTitle, const TSharedPtr& ModalParent);