TrackManiaControl/application/core/FML/Types/Styleable.php
Steffen Schröder 666785de90 FML Update
2013-12-09 13:05:05 +01:00

19 lines
230 B
PHP

<?php
namespace FML\Types;
/**
* Interface for elements with style attribute
*
* @author steeffeen
*/
interface Styleable {
/**
* Set style
*
* @param string $style
*/
public function setStyle($style);
}