khanat-code-old/code/web/app/app_achievements_admin/class/CSR_inter.php

7 lines
94 B
PHP
Raw Normal View History

<?php
interface CSR {
function grant($player_id);
function deny($player_id);
}
?>