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

20 lines
263 B
PHP
Raw Normal View History

<?php
namespace FML\Types;
/**
* Interface for elements that support the action attribute
*
* @author steeffeen
*/
interface Actionable {
/**
* Set action
*
2013-12-31 02:55:19 +01:00
* @param string $action
* Action Name
*/
public function setAction($action);
}