TrackManiaControl/application/core/Libs/FML/Types/ScriptFeatureable.php

21 lines
414 B
PHP
Raw Normal View History

2014-04-27 14:44:40 +02:00
<?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();
}