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

20 lines
302 B
PHP
Raw Normal View History

<?php
namespace FML\Types;
/**
2013-12-09 13:05:05 +01:00
* Interface for elements with ScriptEvents attribute
*
* @author steeffeen
*/
interface Scriptable {
/**
2013-12-31 02:55:19 +01:00
* Set ScriptEvents
*
2013-12-09 13:05:05 +01:00
* @param bool $scriptEvents
2013-12-31 02:55:19 +01:00
* If Script Events should be enabled
*/
public function setScriptEvents($scriptEvents);
}