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

11 lines
369 B
C++
Executable file

#include "ChargedWeaponUpgrade.h"
#include "Templates/SubclassOf.h"
FUpgradeValues UChargedWeaponUpgrade::GetUpgradedValue(TSubclassOf<AItem> Item, AFSDPlayerState* Player, EChargedWeaponUpgrades NewUpgradeType) {
return FUpgradeValues{};
}
UChargedWeaponUpgrade::UChargedWeaponUpgrade() {
this->upgradeType = EChargedWeaponUpgrades::ShotCostAtFullCharge;
}