LEAP Documentation 40220
Documentation for the LEAP project
AfflictionInstanceDashOnKill.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 "AfflictionInstanceDashOnKill.generated.h"
8
9
10UCLASS()
12{
13 GENERATED_BODY()
14
15public:
16 virtual void ApplyModifier() override;
17 virtual bool GetBoolModifier() { return bResetDashesOnKill; }
18 /* Disables the rotation of the controlled pawn */
19 UPROPERTY(EditDefaultsOnly, Category = "Affliction")
20 bool bResetDashesOnKill = true;
21};
Definition: AfflictionInstanceBool.h:14
Definition: AfflictionInstanceDashOnKill.h:12
virtual bool GetBoolModifier()
Definition: AfflictionInstanceDashOnKill.h:17