TrackManiaControl/application/core/FML/Types/Container.php
Steffen Schröder 666785de90 FML Update
2013-12-09 13:05:05 +01:00

24 lines
332 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();
}