mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
12 lines
243 B
C++
12 lines
243 B
C++
#include "AthenaBossHealthData.h"
|
|
|
|
FAthenaBossHealthData::FAthenaBossHealthData() {
|
|
this->bVisible = false;
|
|
this->bShowShields = false;
|
|
this->Health = 0;
|
|
this->HealthMax = 0;
|
|
this->Shields = 0;
|
|
this->ShieldsMax = 0;
|
|
}
|
|
|