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

22 lines
489 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Reward.h"
#include "ResourceReward.generated.h"
class UResourceData;
UCLASS(Blueprintable, EditInlineNew)
class UResourceReward : public UReward {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
UResourceData* Resource;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 Amount;
public:
UResourceReward();
};