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

19 lines
261 B
PHP
Raw Normal View History

<?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);
}