12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace loyalsoft;
- /**
- * Description of Ins_FootHold
- * 据点信息数据结构
- * @author gwang
- * @version
- * 2022.3.11 created.
- */
- class Ins_FootHold extends Object_ext {
- /**
- * @var int 据点编号
- */
- public $mapId;
- /**
- * @var Enum_FootHoldType 当前地图类型(某些条件下可以修改地图类型从据点转为非据点)
- */
- public $curMapType;
- /**
- * 探索进度
- * @var type
- */
- public $curExploreProgress = 0;
- /**
- * @var bool 探索奖励是否已经领取
- */
- public $exploreRewardGeted = false;
- /**
- * @var bool 传送阵是否可用
- */
- public $transmissionIsOk = false;
- }
|