khanat-opennel-code/code/web/app/app_achievements/class/RyzomUser_class.php

25 lines
342 B
PHP
Raw Normal View History

<?php
class RyzomUser {
private $data;
function RyzomUser($data) {
$this->data = $data;
}
function getID() {
return 1;
}
function getLang() {
return $this->data['lang'];
}
function isIG() {
return $this->data['ig'];
}
function getParam($p) {
return $this->data[$p];
}
}
?>