26 lines
700 B
C++
Executable file
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();
|
|
};
|
|
|