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

21 lines
266 B
PHP
Raw Normal View History

<?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);
}
?>