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

15 lines
372 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "BehaviorTree/BTDecorator.h"
#include "BTDecorator_RandomChance.generated.h"
UCLASS(Blueprintable)
class UBTDecorator_RandomChance : public UBTDecorator {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float Chance;
UBTDecorator_RandomChance();
};