TrackManiaControl/libs/FML/Types/ScriptFeatureable.php

25 lines
484 B
PHP
Raw Normal View History

2014-04-27 14:44:40 +02:00
<?php
namespace FML\Types;
2017-03-25 18:40:15 +01:00
use FML\Script\Features\ScriptFeature;
2014-04-27 14:44:40 +02:00
/**
2014-06-21 03:18:21 +02:00
* Interface for Elements supporting ScriptFeatures
2014-04-27 14:44:40 +02:00
*
2014-05-20 15:44:45 +02:00
* @author steeffeen <mail@steeffeen.com>
2017-03-25 18:40:15 +01:00
* @copyright FancyManiaLinks Copyright © 2017 Steffen Schröder
2014-05-18 19:45:50 +02:00
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
2014-04-27 14:44:40 +02:00
*/
2017-03-25 18:40:15 +01:00
interface ScriptFeatureable
{
/**
* Get the Script Features
*
* @return ScriptFeature[]
*/
public function getScriptFeatures();
2014-04-27 14:44:40 +02:00
}