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

19 lines
268 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);
}