123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?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_ExploreArea
- *
- * @author c'y'zhao
- */
- class Ins_ExploreArea extends Object_ext{
-
- /**
- * 区域id
- */
- public $areaId = 0;
-
- /**
- * 区域等级
- */
- public $level = 1;
-
- /**
- * 探索开始时间
- */
- public $startTs = 0;
-
- /**
- * 派遣宠物uid
- * @var type
- */
- public $explorePetList = array();
-
- /**
- * 未解锁
- * @var type
- */
- public $unlock = 0;
- /**
- * 构造函数
- * @param type $args
- */
- public function __construct($args = null) {
- if($args !=null){
- parent::__construct($args);
- } else {
-
- }
- }
-
- /**
- * 配置
- * @return sm_pet_egg
- */
- // public function mo() {
- // $mo = GameConfig::pet_egg_getItem($this->eggId);
- // my_Assert(null != $mo, ErrCode::err_const_no);
- // return $mo;
- // }
- }
|