7f1646f25d
- Endurance plugin - map class nbCheckpoints - added script callbacks registration
19 lines
232 B
PHP
19 lines
232 B
PHP
<?php
|
|
|
|
namespace FML\Script\Sections;
|
|
|
|
/**
|
|
* Script feature using constants
|
|
*
|
|
* @author steeffeen
|
|
*/
|
|
interface Constants {
|
|
|
|
/**
|
|
* Return array of constant values with names as keys
|
|
*/
|
|
public function getConstants();
|
|
}
|
|
|
|
?>
|