TrackManiaControl/application/core/FML/Types/NewLineable.php
Steffen Schröder 666785de90 FML Update
2013-12-09 13:05:05 +01:00

19 lines
262 B
PHP

<?php
namespace FML\Types;
/**
* Interface for elements with AutoNewLine attribute
*
* @author steeffeen
*/
interface NewLineable {
/**
* Set auto new line
*
* @param bool $autoNewLine
*/
public function setAutoNewLine($autoNewLine);
}