TrackManiaControl/application/core/FML/Types/Renderable.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

22 lines
291 B
PHP

<?php
namespace FML\Types;
/**
* Interface for renderable elements
*
* @author steeffeen
*/
interface Renderable {
/**
* Render the xml element
*
* @param \DOMDocument $domDocument
* @return \DOMElement
*/
public function render(\DOMDocument $domDocument);
}
?>