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

20 lines
335 B
PHP
Raw Normal View History

<?php
namespace FML\Types;
/**
2014-01-12 00:51:46 +01:00
* Interface for renderable Elements
*
* @author steeffeen
*/
interface Renderable {
/**
2013-12-31 02:55:19 +01:00
* Render the XML Element
*
2014-01-12 00:51:46 +01:00
* @param \DOMDocument $domDocument DomDocument for which the XML Element should be rendered
* @return \DOMElement
*/
public function render(\DOMDocument $domDocument);
}