Files
LuckyWorld/Source/LuckyWorldV2/Public/UI/Common/MenuTitleUserWidget.h
martinluckyrobots f8eebc934d Optimizing the code
2025-04-21 15:48:35 +03:00

28 lines
562 B
C++

// 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;
};