Ins_Hero.php 894 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_Hero
  10. *
  11. * @author c'y'zhao
  12. */
  13. class Ins_Hero extends Object_ext {
  14. /**
  15. * hero id
  16. * @var type
  17. */
  18. public $Id = 0;
  19. /**
  20. * 角色未解锁 0 角色已经解锁 1:
  21. * @var int
  22. */
  23. public $isUnlock = 1;
  24. /**
  25. * 新头像标志 0:没有标志 1:有新头像标志
  26. * @var type
  27. */
  28. public $isNewHeadImgTip = 0;
  29. /**
  30. * 通关的关卡记录
  31. * @var type
  32. */
  33. public $passGates = array();
  34. public function __construct($arg = null) {
  35. if($arg == null){
  36. } else {
  37. parent::__construct($arg);
  38. }
  39. }
  40. }