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

15 lines
414 B
C++
Executable file

#include "FriendlyHealthComponent.h"
float UFriendlyHealthComponent::GetMaxHealth() const {
return 0.0f;
}
UFriendlyHealthComponent::UFriendlyHealthComponent() {
this->MaxHealth = 100.00f;
this->FriendlyFireModifier = 1.00f;
this->NeutralDamageModifier = 1.00f;
this->BigHitDamageModifier = 1.00f;
this->BigHitDamageReductionThreshold = 8.00f;
this->GenericImpactParticles = NULL;
}