optimization CaptureSettingsUserWidget GameUserWidget

This commit is contained in:
martinluckyrobots
2025-04-14 13:01:18 +08:00
parent 8339202ff4
commit 6a50b86363
7 changed files with 27 additions and 0 deletions

View File

@ -7,6 +7,9 @@
#include "SharedDef.h"
#include "GameUserWidget.generated.h"
DECLARE_DYNAMIC_MULTICAST_DELEGATE(FOnReset);
class UCaptureSettingsUserWidget;
/**
*
*/
@ -36,6 +39,11 @@ public:
UPROPERTY(EditAnywhere, BlueprintReadWrite)
FString DownCountStr;
public:
UPROPERTY(BlueprintCallable, BlueprintAssignable, Category = "Event")
FOnReset OnReset;
public:
UFUNCTION(BlueprintCallable)
void DoWaitSecond();
@ -50,4 +58,7 @@ public:
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
void DoAutoConfirm();
UFUNCTION(BlueprintPure, BlueprintImplementableEvent)
UCaptureSettingsUserWidget* GetCaptureSettingsUserWidget();
};