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