TrackManiaControl/application/core/FML/Controls/Quads/Quad_Hud3dEchelons.php
Steffen Schröder 7f1646f25d - Moved FML into core folder
- Endurance plugin
- map class nbCheckpoints
- added script callbacks registration
2013-11-25 19:46:29 +01:00

30 lines
542 B
PHP

<?php
namespace FML\Controls\Quads;
use FML\Controls\Quad;
/**
* Quad class for style 'Hud3dEchelons'
*
* @author steeffeen
*/
class Quad_Hud3dEchelons extends Quad {
/**
* Constants
*/
const STYLE = 'Hud3dEchelons';
/**
* Construct Hud3dEchelons quad
*/
public function __construct() {
parent::__construct();
$this->setStyle(self::STYLE);
array("EchelonBronze1", "EchelonBronze2", "EchelonBronze3", "EchelonGold1", "EchelonGold2", "EchelonGold3", "EchelonSilver1",
"EchelonSilver2", "EchelonSilver3");
}
}
?>