19 lines
449 B
C++
Executable file
19 lines
449 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "AfflictionEffect.h"
|
|
#include "CameraParticleAfflictionEffect.generated.h"
|
|
|
|
class UParticleSystem;
|
|
|
|
UCLASS(Blueprintable)
|
|
class UCameraParticleAfflictionEffect : public UAfflictionEffect {
|
|
GENERATED_BODY()
|
|
public:
|
|
protected:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
UParticleSystem* ParticleEffect;
|
|
|
|
public:
|
|
UCameraParticleAfflictionEffect();
|
|
};
|
|
|