11 lines
337 B
C++
Executable file
11 lines
337 B
C++
Executable file
#include "ConditionalDamageModifierUpgrade.h"
|
|
#include "Templates/SubclassOf.h"
|
|
|
|
FUpgradeValues UConditionalDamageModifierUpgrade::GetUpgradedValue(TSubclassOf<AActor> Item, AFSDPlayerState* Player) {
|
|
return FUpgradeValues{};
|
|
}
|
|
|
|
UConditionalDamageModifierUpgrade::UConditionalDamageModifierUpgrade() {
|
|
this->Condition = NULL;
|
|
}
|
|
|