LEAP Documentation 40220
Documentation for the LEAP project
AfflictionInstanceOvercharge.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 "AfflictionInstanceOvercharge.generated.h"
8
12UCLASS()
14{
15 GENERATED_BODY()
16
17public:
18 virtual bool GetBoolModifier() { return bAllowOverchargingShields; }
19
20protected:
21 virtual void ApplyModifier() override;
22
23 /* Allows overcharing shields on regen */
24 UPROPERTY(EditDefaultsOnly, Category = "Affliction")
25 bool bAllowOverchargingShields = true;
26};
Definition: AfflictionInstanceBool.h:14
Definition: AfflictionInstanceOvercharge.h:14
virtual bool GetBoolModifier()
Definition: AfflictionInstanceOvercharge.h:18