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

19 lines
261 B
PHP

<?php
namespace FML\Types;
/**
* Interface for elements with background color attribute
*
* @author steeffeen
*/
interface BgColorable {
/**
* Set background color
*
* @param string $bgColor
*/
public function setBgColor($bgColor);
}