mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-11 09:49:04 +00:00
9 lines
111 B
PHP
9 lines
111 B
PHP
|
<?php
|
||
|
interface CSR {
|
||
|
function grant($player);
|
||
|
|
||
|
function deny($player);
|
||
|
|
||
|
function getID();
|
||
|
}
|
||
|
?>
|