TrackManiaControl/application/core/FML/Types/Container.php
Steffen Schröder 345368df39 Huge FML Update
2014-05-01 17:34:56 +02:00

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