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

26 lines
700 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Mutator.h"
#include "NoOxygenMutator.generated.h"
class UOxygenComponent;
class UStatusEffect;
UCLASS(Blueprintable, EditInlineNew)
class UNoOxygenMutator : public UMutator {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float OxygenReplenishmentRate;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TSoftClassPtr<UOxygenComponent> OxygenComponent;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TSoftClassPtr<UStatusEffect> ReplenishOxygenEffect;
public:
UNoOxygenMutator();
};