TrackManiaControl/application/plugins/testPlugin.php

18 lines
332 B
PHP
Raw Normal View History

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