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

18 lines
332 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
*/
namespace Maniaplanet\DedicatedServer\Structures;
class Mod extends AbstractStructure
{
public $env;
public $url;
function toArray()
{
return array('Env'=>$this->env,'Url'=>$this->url);
}
}