TrackManiaControl/application/core/FML/Types/BgColorable.php

20 lines
280 B
PHP
Raw Normal View History

<?php
namespace FML\Types;
/**
* Interface for elements with background color attribute
2013-12-31 02:55:19 +01:00
*
* @author steeffeen
*/
interface BgColorable {
/**
2013-12-31 02:55:19 +01:00
* Set Background Color
*
2013-12-31 02:55:19 +01:00
* @param string $bgColor
* Background Color
*/
public function setBgColor($bgColor);
}