17 lines
393 B
C++
Executable file
17 lines
393 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "DamageBonusBase.h"
|
|
#include "PercentDamageBonus.generated.h"
|
|
|
|
UCLASS(Blueprintable, EditInlineNew)
|
|
class UPercentDamageBonus : public UDamageBonusBase {
|
|
GENERATED_BODY()
|
|
public:
|
|
protected:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
float DamageMultiplier;
|
|
|
|
public:
|
|
UPercentDamageBonus();
|
|
};
|
|
|