DRG-Femboy-Voice/Source/FSD/Private/UpgradeValues.cpp
2025-04-15 12:39:31 -07:00

13 lines
401 B
C++
Executable file

#include "UpgradeValues.h"
FUpgradeValues::FUpgradeValues() {
this->BaseValue = 0.00f;
this->UpgradedValue = 0.00f;
this->UpgradedPercentageValue = 0.00f;
this->OldUpgradedValue = 0.00f;
this->OldUpgradedPercentageValue = 0.00f;
this->CurrentValue = 0.00f;
this->CalculationType = EUpgradeCalucationType::Additive;
this->PreviewStatus = EItemPreviewStatus::Normal;
}