- deleted test plugin

- added FML Library
This commit is contained in:
Steffen Schröder
2013-11-25 00:02:07 +01:00
parent 33001ef573
commit 835744b0e6
62 changed files with 2992 additions and 22 deletions

View File

@ -1,22 +0,0 @@
<?php
use ManiaControl\ManiaControl;
use ManiaControl\Plugins\Plugin;
/**
* Basic test plugin
*
* @author steeffeen
*/
class TestPlugin extends Plugin {
public function __construct(ManiaControl $maniaControl) {
$this->maniaControl = $maniaControl;
$this->author = 'steeffeen';
$this->name = 'Test Plugin';
$this->version = '1.0';
$this->description = 'Dummy plugin for testing plugin handling';
}
}
?>