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

19 lines
232 B
PHP
Raw Normal View History

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