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

20 lines
542 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "DamageCondition.h"
#include "ItemTemperatureDamageCondition.generated.h"
UCLASS(Blueprintable, EditInlineNew)
class UItemTemperatureDamageCondition : public UDamageCondition {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 HeatThreshold;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
bool MustBeUnderThreshold;
public:
UItemTemperatureDamageCondition();
};