Ins_rank.php 803 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. /*
  3. * To change this license header, choose License Headers in Project Properties.
  4. * To change this template file, choose Tools | Templates
  5. * and open the template in the editor.
  6. */
  7. namespace loyalsoft;
  8. /**
  9. * Description of Ins_rank
  10. *
  11. * @author c'y'zhao
  12. */
  13. class Ins_rank extends Object_ext{
  14. /*
  15. * 排名
  16. */
  17. public $rank = 0;
  18. /*
  19. * 玩家uid
  20. */
  21. public $uid = "";
  22. /*
  23. * 玩家名称
  24. */
  25. public $name = "";
  26. /*
  27. * 头像
  28. */
  29. public $headImg = "";
  30. /*
  31. * 通关进度
  32. */
  33. public $score = 0;
  34. /**
  35. * 构造函数
  36. * @param type $args
  37. */
  38. public function __construct($args = null) {
  39. if ($args != null) {
  40. parent::__construct($args);
  41. }
  42. }
  43. }