TrackManiaControl/application/core/FML/Types/Actionable.php
Steffen Schröder 666785de90 FML Update
2013-12-09 13:05:05 +01:00

19 lines
248 B
PHP

<?php
namespace FML\Types;
/**
* Interface for elements that support the action attribute
*
* @author steeffeen
*/
interface Actionable {
/**
* Set action
*
* @param string $action
*/
public function setAction($action);
}