TrackManiaControl/application/plugins/testPlugin.php
2013-11-10 11:52:48 +01:00

18 lines
332 B
PHP

<?php
namespace ManiaControl;
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';
}
}
?>