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

19 lines
230 B
PHP
Raw Normal View History

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