TrackManiaControl/application/core/Libs/Maniaplanet/DedicatedServer/Structures/Status.php

25 lines
492 B
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
*/
2014-05-08 19:38:15 +02:00
2014-01-16 16:56:24 +01:00
namespace Maniaplanet\DedicatedServer\Structures;
class Status extends AbstractStructure
{
const UNKNOWN = 0;
const WAITING = 1;
const LAUNCHING = 2;
const SYNCHRONIZATION = 3;
const PLAY = 4;
const EXITING = 6;
2014-05-20 15:20:16 +02:00
const LOCAL = 7;
2014-01-16 16:56:24 +01:00
2014-05-08 19:38:15 +02:00
/** @var int */
2014-01-16 16:56:24 +01:00
public $code;
2014-05-08 19:38:15 +02:00
/** @var string */
2014-01-16 16:56:24 +01:00
public $name;
2014-05-08 19:38:15 +02:00
}