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

23 lines
562 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "ESchematicType.h"
#include "UnlockReward.h"
#include "SchematicReward.generated.h"
class USchematic;
UCLASS(Blueprintable, EditInlineNew)
class USchematicReward : public UUnlockReward {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
ESchematicType SchematicType;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
USchematic* RewardedSchematic;
public:
USchematicReward();
};