TrackManiaControl/application/core/FML/Types/Styleable.php
Steffen Schröder 11abd5ee6e fml update
2014-05-01 17:35:03 +02:00

20 lines
265 B
PHP

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