TrackManiaControl/application/core/FML/Types/Actionable.php
Steffen Schröder 4e02b4b8ea - Improved Chatlog Plugin
- First Step for ManialinkManager
- Added FML Update + MC-Fixes for the changes
2013-11-28 02:04:06 +01:00

20 lines
251 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);
}
?>