TrackManiaControl/application/core/FML/Controls/Quads/Quad_BgsChallengeMedals.php
Steffen Schröder 5447588749 Huge FML Update
2013-12-31 02:55:41 +01:00

33 lines
630 B
PHP

<?php
namespace FML\Controls\Quads;
use FML\Controls\Quad;
/**
* Quad class for style 'BgsChallengeMedals'
*
* @author steeffeen
*/
class Quad_BgsChallengeMedals extends Quad {
/**
* Constants
*/
const STYLE = 'BgsChallengeMedals';
const SUBSTYLE_BgBronze = 'BgBronze';
const SUBSTYLE_BgGold = 'BgGold';
const SUBSTYLE_BgNadeo = 'BgNadeo';
const SUBSTYLE_BgNotPlayed = 'BgNotPlayed';
const SUBSTYLE_BgPlayed = 'BgPlayed';
const SUBSTYLE_BgSilver = 'BgSilver';
/**
*
* @see \FML\Controls\Quad
*/
public function __construct($id = null) {
parent::__construct($id);
$this->setStyle(self::STYLE);
}
}