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

24 lines
348 B
PHP
Raw Normal View History

<?php
namespace FML\Types;
/**
2014-01-12 00:51:46 +01:00
* 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
*
2014-01-12 00:51:46 +01:00
* @param Renderable $child The Child Element to add
*/
public function add(Renderable $child);
/**
2013-12-31 02:55:19 +01:00
* Remove all Children
*/
public function removeChildren();
}