mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
14 lines
365 B
C++
14 lines
365 B
C++
#include "FortPlayerDeathReport.h"
|
|
|
|
FFortPlayerDeathReport::FFortPlayerDeathReport() {
|
|
this->ServerTimeForRespawn = 0.00f;
|
|
this->ServerTimeForResurrect = 0.00f;
|
|
this->LethalDamage = 0.00f;
|
|
this->KillerPlayerState = NULL;
|
|
this->KillerPawn = NULL;
|
|
this->DamageCauser = NULL;
|
|
this->bDroppedBackpack = false;
|
|
this->bNotifyUI = false;
|
|
}
|
|
|