TrackManiaControl/application/core/FML/Types/Styleable.php
Steffen Schröder 5447588749 Huge FML Update
2013-12-31 02:55:41 +01:00

20 lines
239 B
PHP

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