TrackManiaControl/application/core/FML/Types/Scriptable.php
Steffen Schröder 5447588749 Huge FML Update
2013-12-31 02:55:41 +01:00

20 lines
302 B
PHP

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