steeffffeen/FancyManiaLinks

View on GitHub
FML/Controls/Quads/Quad_UiSMSpectatorScoreBig.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace FML\Controls\Quads;

use FML\Controls\Quad;

/**
 * Quad class for 'UiSMSpectatorScoreBig' styles
 *
 * @author    steeffeen <mail@steeffeen.com>
 * @copyright FancyManiaLinks Copyright © 2017 Steffen Schröder
 * @license   http://www.gnu.org/licenses/ GNU General Public License, Version 3
 */
class Quad_UiSMSpectatorScoreBig extends Quad
{

    /*
     * Constants
     */
    const STYLE                       = 'UiSMSpectatorScoreBig';
    CONST SUBSTYLE_BotLeft            = 'BotLeft';
    CONST SUBSTYLE_BotLeftGlass       = 'BotLeftGlass';
    CONST SUBSTYLE_BotRight           = 'BotRight';
    CONST SUBSTYLE_BotRightGlass      = 'BotRightGlass';
    CONST SUBSTYLE_CenterShield       = 'CenterShield';
    CONST SUBSTYLE_CenterShieldSmall  = 'CenterShieldSmall';
    CONST SUBSTYLE_HandleLeft         = 'HandleLeft';
    CONST SUBSTYLE_HandleRight        = 'HandleRight';
    CONST SUBSTYLE_PlayerGlass        = 'PlayerGlass';
    CONST SUBSTYLE_PlayerIconBg       = 'PlayerIconBg';
    CONST SUBSTYLE_PlayerJunction     = 'PlayerJunction';
    CONST SUBSTYLE_PlayerSlot         = 'PlayerSlot';
    CONST SUBSTYLE_PlayerSlotCenter   = 'PlayerSlotCenter';
    CONST SUBSTYLE_PlayerSlotRev      = 'PlayerSlotRev';
    CONST SUBSTYLE_PlayerSlotSmall    = 'PlayerSlotSmall';
    CONST SUBSTYLE_PlayerSlotSmallRev = 'PlayerSlotSmallRev';
    CONST SUBSTYLE_TableBgHoriz       = 'TableBgHoriz';
    CONST SUBSTYLE_TableBgVert        = 'TableBgVert';
    CONST SUBSTYLE_Top                = 'Top';
    CONST SUBSTYLE_UIRange1Bg         = 'UIRange1Bg';
    CONST SUBSTYLE_UIRange2Bg         = 'UIRange2Bg';

    /**
     * @var string $style Style
     */
    protected $style = self::STYLE;

}