changed names, some other minor things

This commit is contained in:
kremsy
2013-11-09 13:29:18 +01:00
parent 4a0ed1836d
commit 99a754034a
19 changed files with 156 additions and 5171 deletions

View File

@ -11,6 +11,19 @@ namespace ManiaControl;
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);
}
}
?>