TrackManiaControl/application/core/Libs/FML/Types/ScriptFeatureable.php
Steffen Schröder b75946e048 FML 1.1
2014-05-01 17:35:45 +02:00

21 lines
414 B
PHP

<?php
namespace FML\Types;
/**
* Interface for Elements supporting Script Features
*
* @author steeffeen
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
interface ScriptFeatureable {
/**
* Get the assigned Script Features of the Element
*
* @return array
*/
public function getScriptFeatures();
}