12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?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_GateInfo
- *
- * @author c'y'zhao
- */
- class Ins_GateInfo {
-
- public $GateId = 0;
-
- /**
- * 0: 未领取,1: 五分钟奖励已领取 ,2: 十分钟奖励已领取, 3: 通关奖励已领取 (这个必须顺序领取)
- */
- public $FirstReward = 0;
-
- /**
- * 坚持生存的最长时间(单位秒)
- * @var type
- */
- public $MaxSeconds = 0;
- /**
- * 1:通关
- * @param type $arg
- */
- public $pass = 0;
-
- /**
- * 本关剧情是否已经播放过 0:没有 1:有
- * @var type
- */
- public $plotStart = 0;
-
- }
|