TrackManiaControl/application/core/FML/Types/Styleable.php
Steffen Schröder 345368df39 Huge FML Update
2014-05-01 17:34:56 +02:00

19 lines
232 B
PHP

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