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

20 lines
239 B
PHP
Raw Normal View History

<?php
namespace FML\Types;
/**
* Interface for elements with style attribute
*
* @author steeffeen
*/
interface Styleable {
/**
2013-12-31 02:55:19 +01:00
* Set Style
*
2013-12-31 02:55:19 +01:00
* @param string $style
* Style
*/
public function setStyle($style);
}