- removed unnecessary files

- cleaned up database class
- plugin and plugin handler class
- improved player and player handler classes
- other cleanup and improvements
This commit is contained in:
Steffen Schröder
2013-11-10 02:55:08 +01:00
parent d1818680d5
commit d2744a5157
35 changed files with 588 additions and 3563 deletions

View File

@@ -0,0 +1,28 @@
<?php
namespace ManiaControl;
class TestPlugin extends Plugin {
public function __construct(ManiaControl $maniaControl) {
$this->maniaControl = $maniaControl;
}
public function getAuthor() {
return 'steeffeen';
}
public function getName() {
return 'Test Plugin';
}
public function getVersion() {
return '1.0';
}
public function getDescription() {
return 'Dummy plugin for testing plugin handling';
}
}
?>