Ins_ExploreArea.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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_ExploreArea
  10. *
  11. * @author c'y'zhao
  12. */
  13. class Ins_ExploreArea extends Object_ext{
  14. /**
  15. * 区域id
  16. */
  17. public $areaId = 0;
  18. /**
  19. * 区域等级
  20. */
  21. public $level = 1;
  22. /**
  23. * 探索开始时间
  24. */
  25. public $startTs = 0;
  26. /**
  27. * 派遣宠物uid
  28. * @var type
  29. */
  30. public $explorePetList = array();
  31. /**
  32. * 未解锁
  33. * @var type
  34. */
  35. public $unlock = 0;
  36. /**
  37. * 构造函数
  38. * @param type $args
  39. */
  40. public function __construct($args = null) {
  41. if($args !=null){
  42. parent::__construct($args);
  43. } else {
  44. }
  45. }
  46. /**
  47. * 配置
  48. * @return sm_pet_egg
  49. */
  50. // public function mo() {
  51. // $mo = GameConfig::pet_egg_getItem($this->eggId);
  52. // my_Assert(null != $mo, ErrCode::err_const_no);
  53. // return $mo;
  54. // }
  55. }