TrackManiaControl/application/core/FML/Types/Scriptable.php

19 lines
295 B
PHP
Raw Normal View History

<?php
namespace FML\Types;
/**
2014-01-12 00:51:46 +01:00
* Interface for Elements with ScriptEvents Attribute
*
* @author steeffeen
*/
interface Scriptable {
/**
2013-12-31 02:55:19 +01:00
* Set ScriptEvents
*
2014-01-12 00:51:46 +01:00
* @param bool $scriptEvents Whether Script Events should be enabled
*/
public function setScriptEvents($scriptEvents);
}