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

11 lines
322 B
C++
Executable file

#include "ArmorUpgrade.h"
#include "Templates/SubclassOf.h"
FUpgradeValues UArmorUpgrade::GetUpgradedValue(AFSDPlayerState* Player, TSubclassOf<AActor> armorClass, EArmorUpgradeType aUpgradeType) {
return FUpgradeValues{};
}
UArmorUpgrade::UArmorUpgrade() {
this->upgradeType = EArmorUpgradeType::RegenDelay;
}