123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- namespace loyalsoft;
- /**
- * Description of Ins_rank
- *
- * @author c'y'zhao
- */
- class Ins_rank extends Object_ext{
- /*
- * 排名
- */
- public $rank = 0;
- /*
- * 玩家uid
- */
- public $uid = "";
-
- /*
- * 玩家名称
- */
- public $name = "";
-
- /*
- * 头像
- */
- public $headImg = "";
- /*
- * 通关进度
- */
- public $score = 0;
-
- /**
- * 构造函数
- * @param type $args
- */
- public function __construct($args = null) {
- if ($args != null) {
- parent::__construct($args);
- }
- }
- }
|