TrackManiaControl/application/core/FML/Types/BgColorable.php
Steffen Schröder 5447588749 Huge FML Update
2013-12-31 02:55:41 +01:00

20 lines
280 B
PHP

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