trackmania callbacks class

This commit is contained in:
Steffen Schröder
2014-05-24 17:45:35 +02:00
parent 5faa16d5be
commit 2d7ac34319
3 changed files with 78 additions and 1 deletions

View File

@ -55,6 +55,7 @@ class CallbackManager {
*/
public $libXmlRpcCallbacks = null;
public $shootManiaCallbacks = null;
public $trackManiaCallbacks = null;
/*
* Private Properties
@ -71,8 +72,9 @@ class CallbackManager {
public function __construct(ManiaControl $maniaControl) {
$this->maniaControl = $maniaControl;
$this->shootManiaCallbacks = new ShootManiaCallbacks($maniaControl, $this);
$this->libXmlRpcCallbacks = new LibXmlRpcCallbacks($maniaControl, $this);
$this->shootManiaCallbacks = new ShootManiaCallbacks($maniaControl, $this);
$this->trackManiaCallbacks = new TrackManiaCallbacks($maniaControl, $this);
}
/**