11 lines
329 B
C++
Executable file
11 lines
329 B
C++
Executable file
#include "PickaxeUpgrade.h"
|
|
#include "Templates/SubclassOf.h"
|
|
|
|
FUpgradeValues UPickaxeUpgrade::GetUpgradedValue(TSubclassOf<AItem> Item, AFSDPlayerState* Player, EPickaxeUpgradeType NewUpgradeType) {
|
|
return FUpgradeValues{};
|
|
}
|
|
|
|
UPickaxeUpgrade::UPickaxeUpgrade() {
|
|
this->upgradeType = EPickaxeUpgradeType::RockMining;
|
|
}
|
|
|