TrackManiaControl/application/FML/Types/Scriptable.php
Steffen Schröder 835744b0e6 - deleted test plugin
- added FML Library
2013-11-25 00:02:07 +01:00

21 lines
261 B
PHP

<?php
namespace FML\Types;
/**
* Interface for elements with scriptevents attribute
*
* @author steeffeen
*/
interface Scriptable {
/**
* Set scriptevents
*
* @param bool $style
*/
public function setScriptEvents($scriptEvents);
}
?>