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

29 lines
492 B
PHP
Raw Normal View History

<?php
namespace FML\Types;
/**
2014-01-12 00:51:46 +01:00
* Interface for Elements with SubStyle Attribute
*
* @author steeffeen
*/
interface SubStyleable {
/**
2013-12-09 13:05:05 +01:00
* Set SubStyle
*
2014-01-12 00:51:46 +01:00
* @param string $subStyle SubStyle Name
2014-01-21 20:30:40 +01:00
* @return \FML\Types\SubStyleable
*/
public function setSubStyle($subStyle);
/**
2013-12-09 13:05:05 +01:00
* Set Style and SubStyle
2013-12-31 02:55:19 +01:00
*
2014-01-12 00:51:46 +01:00
* @param string $style Style Name
* @param string $subStyle SubStyle Name
2014-01-21 20:30:40 +01:00
* @return \FML\Types\SubStyleable
*/
public function setStyles($style, $subStyle);
}