TrackManiaControl/application/core/Maniaplanet/DedicatedServer/Structures/ServerOptions.php

42 lines
1.1 KiB
PHP
Raw Normal View History

2014-01-16 16:56:24 +01:00
<?php
/**
* ManiaPlanet dedicated server Xml-RPC client
*
* @license http://www.gnu.org/licenses/lgpl.html LGPL License 3
*/
namespace Maniaplanet\DedicatedServer\Structures;
class ServerOptions extends AbstractStructure
{
public $name;
public $comment;
public $password;
public $passwordForSpectator;
public $hideServer;
public $currentMaxPlayers;
public $nextMaxPlayers;
public $currentMaxSpectators;
public $nextMaxSpectators;
public $isP2PUpload;
public $isP2PDownload;
public $currentLadderMode;
public $nextLadderMode;
public $ladderServerLimitMax;
public $ladderServerLimitMin;
public $currentVehicleNetQuality;
public $nextVehicleNetQuality;
public $currentCallVoteTimeOut;
public $nextCallVoteTimeOut;
public $callVoteRatio;
public $allowMapDownload;
public $autoSaveReplays;
public $autoSaveValidationReplays;
public $refereePassword;
public $refereeMode;
public $currentUseChangingValidationSeed;
public $useChangingValidationSeed;
public $nextUseChangingValidationSeed;
public $clientInputsMaxLatency;
public $keepPlayerSlots;
}