DRG-Femboy-Voice/Source/FSD/Public/FSDLevelLoadingPersistentWidget.h
2025-04-15 12:39:31 -07:00

17 lines
473 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Blueprint/UserWidget.h"
#include "FSDLevelLoadingPersistentWidget.generated.h"
class UTexture;
UCLASS(Abstract, Blueprintable, EditInlineNew)
class UFSDLevelLoadingPersistentWidget : public UUserWidget {
GENERATED_BODY()
public:
UFSDLevelLoadingPersistentWidget();
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
void SetFadeProgress(float fade, bool ToSpaceRig, UTexture* LoadingImage);
};