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

18 lines
444 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "AfflictionEffect.h"
#include "EFrozenBitsSize.h"
#include "BurningAfflictionEffect.generated.h"
UCLASS(Abstract, Blueprintable)
class UBurningAfflictionEffect : public UAfflictionEffect {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
EFrozenBitsSize FireParticleSize;
public:
UBurningAfflictionEffect();
};