TrackManiaControl/application/core/Libs/FML/Controls/Quads/Quad_Hud3dIcons.php

33 lines
803 B
PHP
Raw Normal View History

2014-04-13 18:21:40 +02:00
<?php
namespace FML\Controls\Quads;
use FML\Controls\Quad;
/**
2014-06-21 03:18:21 +02:00
* Quad class for 'Hud3dIcons' styles
2014-04-13 18:21:40 +02:00
*
2014-06-21 03:18:21 +02:00
* @author steeffeen
2014-04-13 18:21:40 +02:00
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
2014-06-21 03:18:21 +02:00
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
2014-04-13 18:21:40 +02:00
*/
class Quad_Hud3dIcons extends Quad {
/*
* Constants
*/
2014-06-21 03:18:21 +02:00
const STYLE = 'Hud3dIcons';
const SUBSTYLE_Cross = 'Cross';
2014-04-13 18:21:40 +02:00
const SUBSTYLE_CrossTargeted = 'CrossTargeted';
2014-06-21 03:18:21 +02:00
const SUBSTYLE_Player1 = 'Player1';
const SUBSTYLE_Player2 = 'Player2';
const SUBSTYLE_Player3 = 'Player3';
const SUBSTYLE_PointA = 'PointA';
const SUBSTYLE_PointB = 'PointB';
const SUBSTYLE_PointC = 'PointC';
2014-04-13 18:21:40 +02:00
2014-06-21 03:18:21 +02:00
/*
* Protected properties
2014-04-13 18:21:40 +02:00
*/
2014-06-21 03:18:21 +02:00
protected $style = self::STYLE;
2014-04-13 18:21:40 +02:00
}