Files
FNGameProj/Source/FortniteUI/Private/QuickHealButton.cpp
2024-01-21 00:41:14 +01:00

20 lines
522 B
C++

#include "QuickHealButton.h"
void UQuickHealButton::HandlePlayerShieldUpdated(float PlayerShield, EFortHitPointModificationReason Reason) {
}
void UQuickHealButton::HandlePlayerMaxShieldUpdated(float PlayerMaxShield) {
}
void UQuickHealButton::HandlePlayerMaxHealthUpdated(float PlayerMaxHealth) {
}
void UQuickHealButton::HandlePlayerHealthUpdated(float PlayerHealth, EFortHitPointModificationReason Reason) {
}
UQuickHealButton::UQuickHealButton() {
this->Image_Icon = NULL;
this->Button_Overlay = NULL;
}