TrackManiaControl/application/core/FML/Types/NewLineable.php
Steffen Schröder 5447588749 Huge FML Update
2013-12-31 02:55:41 +01:00

20 lines
318 B
PHP

<?php
namespace FML\Types;
/**
* Interface for elements with AutoNewLine attribute
*
* @author steeffeen
*/
interface NewLineable {
/**
* Set Auto New Line
*
* @param bool $autoNewLine
* If the Control should insert New Lines automatically
*/
public function setAutoNewLine($autoNewLine);
}