Ins_FootHold.php 709 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. namespace loyalsoft;
  3. /**
  4. * Description of Ins_FootHold
  5. * 据点信息数据结构
  6. * @author gwang
  7. * @version
  8. * 2022.3.11 created.
  9. */
  10. class Ins_FootHold extends Object_ext {
  11. /**
  12. * @var int 据点编号
  13. */
  14. public $mapId;
  15. /**
  16. * @var Enum_FootHoldType 当前地图类型(某些条件下可以修改地图类型从据点转为非据点)
  17. */
  18. public $curMapType;
  19. /**
  20. * 探索进度
  21. * @var type
  22. */
  23. public $curExploreProgress = 0;
  24. /**
  25. * @var bool 探索奖励是否已经领取
  26. */
  27. public $exploreRewardGeted = false;
  28. /**
  29. * @var bool 传送阵是否可用
  30. */
  31. public $transmissionIsOk = false;
  32. }