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

23 lines
490 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Blueprint/UserWidget.h"
#include "RewardWidget.generated.h"
class UReward;
UCLASS(Blueprintable, EditInlineNew)
class URewardWidget : public UUserWidget {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
UReward* Reward;
public:
URewardWidget();
protected:
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
void PlayReceiveAnim();
};