TrackManiaControl/application/core/FML/Controls/Quads/Quad_Copilot.php
Steffen Schröder 666785de90 FML Update
2013-12-09 13:05:05 +01:00

38 lines
819 B
PHP

<?php
namespace FML\Controls\Quads;
use FML\Controls\Quad;
/**
* Quad class for style 'Copilot'
*
* @author steeffeen
*/
class Quad_Copilot extends Quad {
/**
* Constants
*/
const STYLE = 'Copilot';
const SUBSTYLE_Down = 'Down';
const SUBSTYLE_DownGood = 'DownGood';
const SUBSTYLE_DownWrong = 'DownWrong';
const SUBSTYLE_Left = 'Left';
const SUBSTYLE_LeftGood = 'LeftGood';
const SUBSTYLE_LeftWrong = 'LeftWrong';
const SUBSTYLE_Right = 'Right';
const SUBSTYLE_RightGood = 'RightGood';
const SUBSTYLE_RightWrong = 'RightWrong';
const SUBSTYLE_Up = 'Up';
const SUBSTYLE_UpGood = 'UpGood';
const SUBSTYLE_UpWrong = 'UpWrong';
/**
* Construct Copilot quad
*/
public function __construct() {
parent::__construct();
$this->setStyle(self::STYLE);
}
}