43 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace FML\Controls\Quads;
 | 
						|
 | 
						|
use FML\Controls\Quad;
 | 
						|
 | 
						|
/**
 | 
						|
 * Quad class for 'Icons64x64_2' styles
 | 
						|
 *
 | 
						|
 * @author    steeffeen
 | 
						|
 * @copyright FancyManiaLinks Copyright © 2017 Steffen Schröder
 | 
						|
 * @license   http://www.gnu.org/licenses/ GNU General Public License, Version 3
 | 
						|
 */
 | 
						|
class Quad_Icons64x64_2 extends Quad
 | 
						|
{
 | 
						|
 | 
						|
    /*
 | 
						|
     * Constants
 | 
						|
     */
 | 
						|
    const STYLE                       = 'Icons64x64_2';
 | 
						|
    const SUBSTYLE_ArrowElimination   = 'ArrowElimination';
 | 
						|
    const SUBSTYLE_ArrowHit           = 'ArrowHit';
 | 
						|
    const SUBSTYLE_Calendar           = 'Calendar';
 | 
						|
    const SUBSTYLE_Disconnected       = 'Disconnected';
 | 
						|
    const SUBSTYLE_DisconnectedLight  = 'DisconnectedLight';
 | 
						|
    const SUBSTYLE_LaserElimination   = 'LaserElimination';
 | 
						|
    const SUBSTYLE_LaserHit           = 'LaserHit';
 | 
						|
    const SUBSTYLE_NucleusElimination = 'NucleusElimination';
 | 
						|
    const SUBSTYLE_NucleusHit         = 'NucleusHit';
 | 
						|
    const SUBSTYLE_RocketElimination  = 'RocketElimination';
 | 
						|
    const SUBSTYLE_RocketHit          = 'RocketHit';
 | 
						|
    const SUBSTYLE_ServerNotice       = 'ServerNotice';
 | 
						|
    const SUBSTYLE_SortBy             = 'SortBy';
 | 
						|
    const SUBSTYLE_UnknownElimination = 'UnknownElimination';
 | 
						|
    const SUBSTYLE_UnknownHit         = 'UnknownHit';
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var string $style Style
 | 
						|
     */
 | 
						|
    protected $style = self::STYLE;
 | 
						|
 | 
						|
}
 |