LEAP Documentation 40220
Documentation for the LEAP project
AfflictionInstanceGroundDash.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 "AfflictionInstanceGroundDash.generated.h"
8
9UCLASS()
11{
12 GENERATED_BODY()
13public:
14 virtual bool GetBoolModifier() { return !bDisableGroundedDash; }
15
16protected:
17 virtual void ApplyModifier() override;
18
19 /* Disables the ground check on dash recharging on true */
20 UPROPERTY(EditDefaultsOnly, Category = "Affliction")
21 bool bDisableGroundedDash = true;
22};
Definition: AfflictionInstanceBool.h:14
Definition: AfflictionInstanceGroundDash.h:11
virtual bool GetBoolModifier()
Definition: AfflictionInstanceGroundDash.h:14