TrackManiaControl/application/core/FML/Types/Scriptable.php
Steffen Schröder 11abd5ee6e fml update
2014-05-01 17:35:03 +02:00

20 lines
329 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
* @return \FML\Types\Scriptable
*/
public function setScriptEvents($scriptEvents);
}