mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
17 lines
388 B
C++
17 lines
388 B
C++
#include "FortPlayerDeathReport.h"
|
|
|
|
FFortPlayerDeathReport::FFortPlayerDeathReport() {
|
|
ServerTimeForRespawn = 1;
|
|
ServerTimeForResurrect = 1;
|
|
LethalDamage = 1;
|
|
KillerPlayerState = NULL;
|
|
KillerPawn = NULL;
|
|
KillerHealthPercent = 1;
|
|
KillerShieldPercent = 1;
|
|
KillerWeapon = NULL;
|
|
DamageCauser = NULL;
|
|
bDroppedBackpack = false;
|
|
bNotifyUI = false;
|
|
}
|
|
|