9 lines
No EOL
111 B
PHP
9 lines
No EOL
111 B
PHP
<?php
|
|
interface CSR {
|
|
function grant($player);
|
|
|
|
function deny($player);
|
|
|
|
function getID();
|
|
}
|
|
?>
|