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

19 lines
255 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 {
/**
* Set scriptevents
*
2013-12-09 13:05:05 +01:00
* @param bool $scriptEvents
*/
public function setScriptEvents($scriptEvents);
}