21 lines
		
	
	
		
			311 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			311 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * ManiaPlanet dedicated server Xml-RPC client
 | 
						|
 *
 | 
						|
 * @license     http://www.gnu.org/licenses/lgpl.html LGPL License 3
 | 
						|
 */
 | 
						|
 | 
						|
namespace Maniaplanet\DedicatedServer\Structures;
 | 
						|
 | 
						|
final class ScriptSettings extends AbstractStructure
 | 
						|
{
 | 
						|
 | 
						|
	public $name;
 | 
						|
	public $desc;
 | 
						|
	public $type;
 | 
						|
	public $default;
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
?>
 |