TrackManiaControl/application/core/FML/Controls/Quads/Quad_MedalsBig.php

34 lines
712 B
PHP
Raw Normal View History

<?php
namespace FML\Controls\Quads;
use FML\Controls\Quad;
/**
* Quad class for style 'MedalsBig'
*
* @author steeffeen
*/
class Quad_MedalsBig extends Quad {
/**
* Constants
*/
const STYLE = 'MedalsBig';
2013-12-31 02:55:19 +01:00
const SUBSTYLE_MedalBronze = 'MedalBronze';
const SUBSTYLE_MedalGold = 'MedalGold';
const SUBSTYLE_MedalGoldPerspective = 'MedalGoldPerspective';
const SUBSTYLE_MedalNadeo = 'MedalNadeo';
const SUBSTYLE_MedalNadeoPerspective = 'MedalNadeoPerspective';
const SUBSTYLE_MedalSilver = 'MedalSilver';
const SUBSTYLE_MedalSlot = 'MedalSlot';
/**
2013-12-31 02:55:19 +01:00
*
* @see \FML\Controls\Quad
*/
2013-12-31 02:55:19 +01:00
public function __construct($id = null) {
parent::__construct($id);
$this->setStyle(self::STYLE);
}
}