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

18 lines
449 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "RandRange.h"
#include "StatusEffectItem.h"
#include "InfectionStatusEffectItem.generated.h"
UCLASS(Blueprintable, EditInlineNew)
class UInfectionStatusEffectItem : public UStatusEffectItem {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FRandRange InfectionChangeAmount;
public:
UInfectionStatusEffectItem();
};