TrackManiaControl/application/core/pluginHandler.php
2013-11-09 13:34:36 +01:00

33 lines
484 B
PHP

<?php
namespace ManiaControl;
/**
* Class handles plugins
*
* @author Lukas Kremsmayr and steeffeen
*/
class PluginHandler {
/**
* Private properties
*/
private $mc;
private $plugins;
public function __construct($mc){
$this->mControl = $mc;
$this->plugins = array();
}
public function registerPlugin($plugin){
array_push($this->plugins, $plugin);
}
public function loadPlugins(){
}
}
?>