TrackManiaControl/application/core/FML/Types/Container.php
Steffen Schröder 5447588749 Huge FML Update
2013-12-31 02:55:41 +01:00

25 lines
352 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
* The child to add
*/
public function add(Renderable $child);
/**
* Remove all Children
*/
public function removeChildren();
}