TrackManiaControl/application/core/FML/Types/BgColorable.php
Steffen Schröder 11abd5ee6e fml update
2014-05-01 17:35:03 +02:00

20 lines
303 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
* @return \FML\Types\BgColorable
*/
public function setBgColor($bgColor);
}