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

26 lines
336 B
PHP

<?php
namespace FML\Types;
/**
* Interface for elements being able to contain other elements
*
* @author steeffeen
*/
interface Container {
/**
* Add a new child
*
* @param Renderable $child
*/
public function add(Renderable $child);
/**
* Remove all children
*/
public function removeChildren();
}
?>