mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
18 lines
533 B
C++
18 lines
533 B
C++
#include "FortGamePvPBase.h"
|
|
|
|
AFortGamePvPBase::AFortGamePvPBase() {
|
|
this->NumTeams = 0;
|
|
this->RoundTimeLimit = -1;
|
|
this->RoundTimeRemainingCriticalThreshold = -1;
|
|
this->StalemateTimeLimit = -1;
|
|
this->RestartTimeLimit = -1;
|
|
this->FOBFinalizationLimit = 35;
|
|
this->bUsingFOBs = false;
|
|
this->bFOBInitRequested = false;
|
|
this->bAllFOBConfigActorsInitialized = false;
|
|
this->bFinishedSpawningFOBConfigActors = false;
|
|
this->NumFOBConfigActorsPerTeam = -1;
|
|
this->FOBConfigActorClass = NULL;
|
|
}
|
|
|