- Ingame configurator -> script settings

- fixed local records plugin
- fixed systeminfo command
- FML update
This commit is contained in:
Steffen Schröder
2013-11-28 17:36:39 +01:00
parent fed96b36d0
commit 4951829017
7 changed files with 468 additions and 21 deletions

View File

@ -0,0 +1,43 @@
<?php
namespace ManiaControl\Configurators;
use FML\Script\Pages;
use FML\Script\Tooltips;
use ManiaControl\Players\Player;
/**
* Interface for configurator menus
*
* @author steeffeen & kremsy
*/
interface ConfiguratorMenu {
/**
* Get the menu title
*
* @return string
*/
public function getTitle();
/**
* Get the configurator menu
*
* @param float $width
* @param float $height
* @param Pages $pages
* @param Tooltips $tooltips
* @return \FML\Controls\Control
*/
public function getMenu($width, $height, Pages $pages, Tooltips $tooltips);
/**
* Save the config data
*
* @param array $configData
* @param Player $player
*/
public function saveConfigData(array $configData, Player $player);
}
?>