2025-04-03 10:13:55 +08:00
|
|
|
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
#include "Blueprint/UserWidget.h"
|
2025-04-03 15:10:44 +08:00
|
|
|
#include "SharedDef.h"
|
2025-04-03 10:13:55 +08:00
|
|
|
#include "GameUserWidget.generated.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
UCLASS()
|
|
|
|
class LUCKYROBOTS_API UGameUserWidget : public UUserWidget
|
|
|
|
{
|
|
|
|
GENERATED_BODY()
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void NativeConstruct();
|
|
|
|
|
|
|
|
public:
|
|
|
|
UFUNCTION(BlueprintImplementableEvent)
|
2025-04-04 10:21:44 +08:00
|
|
|
void DoLogItemAdd(const FString& Topic, const FString& MsgText, ELogItemType LogItemType);
|
2025-04-03 10:13:55 +08:00
|
|
|
|
|
|
|
UFUNCTION(BlueprintImplementableEvent)
|
|
|
|
void DoRefreshListView();
|
|
|
|
};
|