19 lines
482 B
C++
Executable file
19 lines
482 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FSDPhysicalMaterial.h"
|
|
#include "OptionalBloodPhysicalMaterial.generated.h"
|
|
|
|
class UParticleSystem;
|
|
|
|
UCLASS(Blueprintable, CollapseCategories)
|
|
class UOptionalBloodPhysicalMaterial : public UFSDPhysicalMaterial {
|
|
GENERATED_BODY()
|
|
public:
|
|
protected:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
UParticleSystem* BloodlessImpactParticles;
|
|
|
|
public:
|
|
UOptionalBloodPhysicalMaterial();
|
|
};
|
|
|