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

9 lines
111 B
PHP
Raw Normal View History

<?php
interface CSR {
2012-07-02 16:56:13 +00:00
function grant($player);
2012-07-02 16:56:13 +00:00
function deny($player);
function getID();
}
?>