Implemented Plugin Interface

This commit is contained in:
Shoghi Cervantes Pueyo
2012-12-26 13:33:43 +01:00
parent 00fea6461c
commit 987a6e635e
4 changed files with 22 additions and 4 deletions

View File

@ -10,7 +10,7 @@ class=SpawnChanger
*/
class SpawnChanger{
class SpawnChanger implements Plugin{
private $api, $config, $path;
public function __construct($api, $server = false){
$this->api = $api;
@ -37,6 +37,10 @@ class SpawnChanger{
$this->api->console->register("spawn", "Teleports to spawn", array($this, "command"));
}
public function __destruct(){
}
public function command($cmd, $args){
switch($cmd){
case "spawnchanger":