11 lines
381 B
C++
Executable file
11 lines
381 B
C++
Executable file
#include "BeltDrivenWeaponUpgrade.h"
|
|
#include "Templates/SubclassOf.h"
|
|
|
|
FUpgradeValues UBeltDrivenWeaponUpgrade::GetUpgradedValue(TSubclassOf<AItem> Item, AFSDPlayerState* Player, EBeltDrivenWeaponUpgrade NewUpgradeType) {
|
|
return FUpgradeValues{};
|
|
}
|
|
|
|
UBeltDrivenWeaponUpgrade::UBeltDrivenWeaponUpgrade() {
|
|
this->upgradeType = EBeltDrivenWeaponUpgrade::BarrelSpinupTime;
|
|
}
|
|
|