TrackManiaControl/application/plugins/plugin.ManiaControl.php

38 lines
503 B
PHP
Raw Normal View History

2013-11-09 10:46:45 +01:00
<?php
2013-11-09 11:19:21 +01:00
namespace ManiaControl;
2013-11-09 10:46:45 +01:00
/**
2013-11-09 11:19:21 +01:00
* Abstract ManiaControl plugin class
2013-11-09 10:46:45 +01:00
*/
abstract class Plugin_Name {
/**
* Constants
*/
const VERSION = '0.1';
/**
* Private properties
*/
private $mControl = null;
/**
* Construct plugin
*
* @param object $mControl
*/
public function __construct($mControl) {
$this->mControl = $mControl;
error_log('Pugin v' . self::VERSION . ' ready!');
}
/**
* Perform actions during each loop
*/
public function loop() {
}
}
?>