TrackManiaControl/application/core/FML/Types/Scriptable.php
Steffen Schröder 666785de90 FML Update
2013-12-09 13:05:05 +01:00

19 lines
255 B
PHP

<?php
namespace FML\Types;
/**
* Interface for elements with ScriptEvents attribute
*
* @author steeffeen
*/
interface Scriptable {
/**
* Set scriptevents
*
* @param bool $scriptEvents
*/
public function setScriptEvents($scriptEvents);
}