11 lines
389 B
C++
Executable file
11 lines
389 B
C++
Executable file
#include "CrossbowUpgrade.h"
|
|
#include "Templates/SubclassOf.h"
|
|
|
|
FUpgradeValues UCrossbowUpgrade::GetUpgradedValue(TSubclassOf<AItem> Item, TSubclassOf<ACrossbowProjectileBase> Projectile, AFSDPlayerState* Player, ECrossbowUpgrades NewUpgradeType) {
|
|
return FUpgradeValues{};
|
|
}
|
|
|
|
UCrossbowUpgrade::UCrossbowUpgrade() {
|
|
this->upgradeType = ECrossbowUpgrades::SpecialArrowPheramone;
|
|
}
|
|
|