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

19 lines
268 B
PHP
Raw Normal View History

<?php
namespace FML\Types;
/**
2014-01-12 00:51:46 +01:00
* 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
*
2014-01-12 00:51:46 +01:00
* @param string $bgColor Background Color
*/
public function setBgColor($bgColor);
}