mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
14 lines
436 B
C++
14 lines
436 B
C++
#include "MinigamePlayer.h"
|
|
|
|
FMinigamePlayer::FMinigamePlayer() {
|
|
this->bHasValidResetData = false;
|
|
this->TeamBeforeMinigameStarted = 0;
|
|
this->bIsLocationBeforeGameStartedBlocked = false;
|
|
this->bWasSkydivingBeforeMinigameStarted = false;
|
|
this->bWasFlyingBeforeMinigameStarted = false;
|
|
this->bIsTeleportingOrRespawningForGameplay = false;
|
|
this->bIsLocalPlayer = false;
|
|
this->ClaimedPlayerStart = NULL;
|
|
}
|
|
|