LEAP Documentation 40220
Documentation for the LEAP project
AfflictionInstanceShieldRegBool.h
Go to the documentation of this file.
1// Copyright Blue Isle Studios Inc 2021. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
7#include "AfflictionInstanceShieldRegBool.generated.h"
8
9UCLASS()
11{
12 GENERATED_BODY()
13public:
14 virtual bool GetBoolModifier() { return bEnablePassiveShieldRegen; }
15
16protected:
17 virtual void ApplyModifier() override;
18
19 /*Disables passive shield regen if false*/
20 UPROPERTY(EditDefaultsOnly, Category = "Affliction")
21 bool bEnablePassiveShieldRegen = false;
22};
Definition: AfflictionInstanceBool.h:14
Definition: AfflictionInstanceShieldRegBool.h:11
virtual bool GetBoolModifier()
Definition: AfflictionInstanceShieldRegBool.h:14