TrackManiaControl/application/FML/Types/SubStyleable.php
Steffen Schröder 835744b0e6 - deleted test plugin
- added FML Library
2013-11-25 00:02:07 +01:00

29 lines
413 B
PHP

<?php
namespace FML\Types;
/**
* Interface for elements with substyle attribute
*
* @author steeffeen
*/
interface SubStyleable {
/**
* Set substyle
*
* @param string $subStyle
*/
public function setSubStyle($subStyle);
/**
* Set style and substyle
*
* @param string $style
* @param string $subStyle
*/
public function setStyles($style, $subStyle);
}
?>