16 lines
360 B
C++
Executable file
16 lines
360 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "WidgetTextCounter.generated.h"
|
|
|
|
class UTextBlock;
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FWidgetTextCounter {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Export, Transient, meta=(AllowPrivateAccess=true))
|
|
TWeakObjectPtr<UTextBlock> Widget;
|
|
|
|
FSD_API FWidgetTextCounter();
|
|
};
|
|
|