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

12 lines
374 B
C++
Executable file

#include "ZiplineGunUpgrade.h"
#include "Templates/SubclassOf.h"
FUpgradeValues UZiplineGunUpgrade::GetUpgradedValue(AFSDPlayerState* Player, TSubclassOf<AActor> Item, EZiplineGunUpgrades NewUpgradeType) {
return FUpgradeValues{};
}
UZiplineGunUpgrade::UZiplineGunUpgrade() {
this->upgradeType = EZiplineGunUpgrades::MaxAngle;
this->ProjectileClass = NULL;
}