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

18 lines
452 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "UObject/NoExportTypes.h"
#include "DamageCondition.h"
#include "PlayerHealthDamageCondition.generated.h"
UCLASS(Blueprintable, EditInlineNew)
class UPlayerHealthDamageCondition : public UDamageCondition {
GENERATED_BODY()
public:
protected:
UPROPERTY(EditAnywhere, meta=(AllowPrivateAccess=true))
FFloatInterval HealthPercentageRequired;
public:
UPlayerHealthDamageCondition();
};