mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
17 lines
374 B
C++
17 lines
374 B
C++
#include "FortRechargingActionTimer.h"
|
|
|
|
FFortRechargingActionTimer::FFortRechargingActionTimer() {
|
|
ChargeRate = 1;
|
|
ActiveExpenseRate = 1;
|
|
PassiveExpenseRate = 1;
|
|
MinActiveDuration = 1;
|
|
MinActivationCharge = 1;
|
|
ActiveCooldownTime = 1;
|
|
ChargeThreshold = 1;
|
|
Charge = 1;
|
|
bIsActive = false;
|
|
bIsCharging = false;
|
|
bIsPassive = false;
|
|
}
|
|
|