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

25 lines
352 B
PHP
Raw Normal View History

<?php
namespace FML\Types;
/**
* Interface for elements being able to contain other elements
*
* @author steeffeen
*/
interface Container {
/**
2013-12-31 02:55:19 +01:00
* Add a new Child
*
2013-12-31 02:55:19 +01:00
* @param Renderable $child
* The child to add
*/
public function add(Renderable $child);
/**
2013-12-31 02:55:19 +01:00
* Remove all Children
*/
public function removeChildren();
}