1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace loyalsoft;
- /**
- * 玩家关卡地图区域数据
- * @author gwang
- */
- class Ins_Mapzone extends Object_ext {
- /**
- * 当前区域id
- * @var type
- */
- public $zoneid;
- /**
- * 最后一次挑战的关卡ID
- * @var int
- */
- public $latest = 1;
- /**
- * 已挑战的最高关卡Id(用于限定解锁关卡)
- * @var int
- */
- public $highest = 1;
- /**
- * 关卡具体数据()
- * @var asoc_array/Ins_UGate dic<gateId,Ins_UGate>
- */
- public $gates;
- /**
- * 构造函数
- * @param type $arg
- */
- function __construct($arg = null) {
- if (null === $arg) {
- $this->gates = ObjectInit();
- } else {
- parent::__construct($arg);
- }
- }
- }
|