TrackManiaControl/application/core/Libs/FML/Types/ScriptFeatureable.php
2014-05-20 15:44:45 +02:00

21 lines
440 B
PHP

<?php
namespace FML\Types;
/**
* Interface for Elements supporting Script Features
*
* @author steeffeen <mail@steeffeen.com>
* @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();
}