TrackManiaControl/application/core/FML/Types/NewLineable.php
Steffen Schröder 7f1646f25d - Moved FML into core folder
- Endurance plugin
- map class nbCheckpoints
- added script callbacks registration
2013-11-25 19:46:29 +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);
}
?>