TrackManiaControl/application/FML/Types/TextFormatable.php
Steffen Schröder 835744b0e6 - deleted test plugin
- added FML Library
2013-11-25 00:02:07 +01:00

42 lines
615 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);
}
?>