TrackManiaControl/application/core/FML/Types/SubStyleable.php
Steffen Schröder 7f1646f25d - Moved FML into core folder
- Endurance plugin
- map class nbCheckpoints
- added script callbacks registration
2013-11-25 19:46:29 +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);
}
?>