mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 03:53:25 +00:00
14 lines
262 B
C++
14 lines
262 B
C++
#include "IntelState.h"
|
|
|
|
FIntelState::FIntelState() {
|
|
bInRange = false;
|
|
TimeRemaining = 1;
|
|
ServerEndTime = 1;
|
|
ServerGroundTimerEnd = 1;
|
|
IntelState = EIntelStateEnum::None;
|
|
WinningTeam = 0;
|
|
AttackingTeam = 0;
|
|
DefendingTeam = 0;
|
|
}
|
|
|