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

19 lines
262 B
PHP
Raw Normal View History

<?php
namespace FML\Types;
/**
2013-12-09 13:05:05 +01:00
* Interface for elements with AutoNewLine attribute
*
* @author steeffeen
*/
interface NewLineable {
/**
* Set auto new line
*
* @param bool $autoNewLine
*/
public function setAutoNewLine($autoNewLine);
}