mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
14 lines
372 B
C++
14 lines
372 B
C++
#include "CreativeIslandMatchmakingSettings.h"
|
|
|
|
FCreativeIslandMatchmakingSettings::FCreativeIslandMatchmakingSettings() {
|
|
MinimumNumberOfPlayers = 0;
|
|
MaximumNumberOfPlayers = 0;
|
|
PlayerCount = 0;
|
|
NumberOfTeams = 0;
|
|
PlayersPerTeam = 0;
|
|
bAllowJoinInProgress = false;
|
|
JoinInProgressType = EJoinInProgress::Spectate;
|
|
JoinInProgressTeam = 0;
|
|
}
|
|
|