Ins_Hero.php 768 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. * 通关的关卡记录
  26. * @var type
  27. */
  28. public $passGates = array();
  29. public function __construct($arg = null) {
  30. if($arg == null){
  31. } else {
  32. parent::__construct($arg);
  33. }
  34. }
  35. }