changed names, some other minor things
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user