TrackManiaControl/application/core/Libs/FML/Types/ScriptFeatureable.php
Steffen Schröder 4194f99c2a FML Update
2014-05-18 20:06:39 +02:00

21 lines
419 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();
}