TrackManiaControl/application/core/FML/Types/Scriptable.php
Steffen Schröder 345368df39 Huge FML Update
2014-05-01 17:34:56 +02:00

19 lines
295 B
PHP

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