TrackManiaControl/application/FML/Types/NewLineable.php
Steffen Schröder 835744b0e6 - deleted test plugin
- added FML Library
2013-11-25 00:02:07 +01:00

21 lines
266 B
PHP

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