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

40 lines
611 B
PHP

<?php
namespace FML\Types;
/**
* Interface for elements with Formatable text
*
* @author steeffeen
*/
interface TextFormatable {
/**
* Set text size
*
* @param int $textSize
*/
public function setTextSize($textSize);
/**
* Set text color
*
* @param string $textColor
*/
public function setTextColor($textColor);
/**
* Set area color
*
* @param string $areaColor
*/
public function setAreaColor($areaColor);
/**
* Set area focus color
*
* @param string $areaFocusColor
*/
public function setAreaFocusColor($areaFocusColor);
}