mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
20 lines
522 B
C++
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;
|
|
}
|
|
|