11 lines
358 B
C++
Executable file
11 lines
358 B
C++
Executable file
#include "LockOnWeaponUpgrade.h"
|
|
#include "Templates/SubclassOf.h"
|
|
|
|
FUpgradeValues ULockOnWeaponUpgrade::GetUpgradedValue(TSubclassOf<AItem> Item, AFSDPlayerState* Player, ELockOnWeaponUpgrades NewUpgradeType) {
|
|
return FUpgradeValues{};
|
|
}
|
|
|
|
ULockOnWeaponUpgrade::ULockOnWeaponUpgrade() {
|
|
this->upgradeType = ELockOnWeaponUpgrades::MaxLockOnDegree;
|
|
}
|
|
|