Files
LuckyWorld/Source/LuckyWorldV2/Public/UI/Common/MenuTitleUserWidget.h

28 lines
562 B
C
Raw Normal View History

2025-04-21 13:06:01 +08:00
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "Blueprint/UserWidget.h"
#include "MenuTitleUserWidget.generated.h"
DECLARE_DYNAMIC_MULTICAST_DELEGATE(FOnClickCloseButton);
/**
*
*/
UCLASS()
class LUCKYWORLDV2_API UMenuTitleUserWidget : public UUserWidget
{
GENERATED_BODY()
public:
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Config")
FString MenuTitle;
public:
UPROPERTY(BlueprintCallable, BlueprintAssignable)
FOnClickCloseButton OnClickCloseButton;
};