use of dedicatedserver api

This commit is contained in:
kremsy
2014-01-16 16:56:24 +01:00
committed by Steffen Schröder
parent a404edf280
commit 13fe48e4ce
28 changed files with 5988 additions and 0 deletions

View File

@ -0,0 +1,27 @@
<?php
/**
* ManiaPlanet dedicated server Xml-RPC client
*
* @license http://www.gnu.org/licenses/lgpl.html LGPL License 3
*/
namespace Maniaplanet\DedicatedServer\Structures;
class Map extends AbstractStructure
{
public $uId;
public $name;
public $fileName;
public $author;
public $environnement;
public $mood;
public $bronzeTime;
public $silverTime;
public $goldTime;
public $authorTime;
public $copperPrice;
public $lapRace;
public $nbLaps;
public $nbCheckpoints;
public $mapType;
public $mapStyle;
}