11 lines
369 B
C++
Executable file
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;
|
|
}
|
|
|