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

30 lines
443 B
PHP
Raw Normal View History

<?php
namespace FML\Types;
/**
2013-12-09 13:05:05 +01:00
* Interface for elements with SubStyle attribute
*
* @author steeffeen
*/
interface SubStyleable {
/**
2013-12-09 13:05:05 +01:00
* Set SubStyle
*
2013-12-31 02:55:19 +01:00
* @param string $subStyle
* Sub-Style
*/
public function setSubStyle($subStyle);
/**
2013-12-09 13:05:05 +01:00
* Set Style and SubStyle
2013-12-31 02:55:19 +01:00
*
* @param string $style
* Style
* @param string $subStyle
* Sub-Style
*/
public function setStyles($style, $subStyle);
}