DRG-Femboy-Voice/Source/FSD/Private/FlatDamageUpgrade.cpp
2025-04-15 12:39:31 -07:00

15 lines
446 B
C++
Executable file

#include "FlatDamageUpgrade.h"
#include "Templates/SubclassOf.h"
FUpgradeValues UFlatDamageUpgrade::GetUpgradedValue(TSubclassOf<AActor> Item, AFSDPlayerState* Player, UDamageClass* NewDamageClass) {
return FUpgradeValues{};
}
UFlatDamageUpgrade::UFlatDamageUpgrade() {
this->Damage = 0.00f;
this->DamageClass = NULL;
this->RequiredClass = NULL;
this->MergeWithOtherFlatDamageUpgrades = true;
this->Condition = NULL;
}