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

20 lines
507 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "ForgingResult.generated.h"
USTRUCT(BlueprintType)
struct FForgingResult {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
bool LevelledUp;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 RewardLevel;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 RewardSeed;
FSD_API FForgingResult();
};