TrackManiaControl/application/core/FML/Types/NewLineable.php
Steffen Schröder 345368df39 Huge FML Update
2014-05-01 17:34:56 +02:00

19 lines
311 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
*/
public function setAutoNewLine($autoNewLine);
}