TrackManiaControl/application/core/FML/Types/TextFormatable.php
Steffen Schröder 345368df39 Huge FML Update
2014-05-01 17:34:56 +02:00

40 lines
624 B
PHP

<?php
namespace FML\Types;
/**
* Interface for Elements with Formatable Text
*
* @author steeffeen
*/
interface TextFormatable {
/**
* Set Text Size
*
* @param int $textSize Text Size
*/
public function setTextSize($textSize);
/**
* Set Text Color
*
* @param string $textColor Text Color
*/
public function setTextColor($textColor);
/**
* Set Area Color
*
* @param string $areaColor Area Color
*/
public function setAreaColor($areaColor);
/**
* Set Area Focus Color
*
* @param string $areaFocusColor Area Focus Color
*/
public function setAreaFocusColor($areaFocusColor);
}