TrackManiaControl/application/core/FML/Types/NewLineable.php
Steffen Schröder 11abd5ee6e fml update
2014-05-01 17:35:03 +02:00

20 lines
346 B
PHP

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