mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
27 lines
833 B
C++
27 lines
833 B
C++
#include "AthenaSpectatorHitPointBarBase.h"
|
|
|
|
void UAthenaSpectatorHitPointBarBase::SetPlayerData(UAthenaRemotePlayerViewData* InPlayerData) {
|
|
}
|
|
|
|
void UAthenaSpectatorHitPointBarBase::OnValueHealed(UAthenaRemotePlayerViewData* InPlayerData, float InValuePercent) {
|
|
}
|
|
|
|
void UAthenaSpectatorHitPointBarBase::OnValueDamaged(UAthenaRemotePlayerViewData* InPlayerData, float InValuePercent) {
|
|
}
|
|
|
|
void UAthenaSpectatorHitPointBarBase::OnEliminatedStateChanged(UAthenaRemotePlayerViewData* InPlayerData, bool bInIsEliminated) {
|
|
}
|
|
|
|
|
|
void UAthenaSpectatorHitPointBarBase::OnDBNOStateChanged(UAthenaRemotePlayerViewData* InPlayerData, bool bInIsDBNO) {
|
|
}
|
|
|
|
|
|
|
|
UAthenaSpectatorHitPointBarBase::UAthenaSpectatorHitPointBarBase() {
|
|
this->BarType = EHealthBarType::Health;
|
|
this->LastToCurrentUpdateRate = 1.50f;
|
|
this->bIsDBNO = false;
|
|
}
|
|
|