mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-08 00:09:02 +00:00
7 lines
94 B
PHP
7 lines
94 B
PHP
|
<?php
|
||
|
interface CSR {
|
||
|
function grant($player_id);
|
||
|
|
||
|
function deny($player_id);
|
||
|
}
|
||
|
?>
|