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

21 lines
261 B
PHP
Raw Normal View History

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