mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 04:03:46 +00:00
13 lines
349 B
C++
13 lines
349 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortGameplayEffectExecutionCalculation.h"
|
|
#include "FortDamageFormulaExecutionCalculation.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class UFortDamageFormulaExecutionCalculation : public UFortGameplayEffectExecutionCalculation {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFortDamageFormulaExecutionCalculation();
|
|
};
|
|
|