Ins_GateInfo.php 825 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. /*
  3. * To change this license header, choose License Headers in Project Properties.
  4. * To change this template file, choose Tools | Templates
  5. * and open the template in the editor.
  6. */
  7. namespace loyalsoft;
  8. /**
  9. * Description of Ins_GateInfo
  10. *
  11. * @author c'y'zhao
  12. */
  13. class Ins_GateInfo {
  14. public $GateId = 0;
  15. /**
  16. * 0: 未领取,1: 五分钟奖励已领取 ,2: 十分钟奖励已领取, 3: 通关奖励已领取 (这个必须顺序领取)
  17. */
  18. public $FirstReward = 0;
  19. /**
  20. * 坚持生存的最长时间(单位秒)
  21. * @var type
  22. */
  23. public $MaxSeconds = 0;
  24. /**
  25. * 1:通关
  26. * @param type $arg
  27. */
  28. public $pass = 0;
  29. /**
  30. * 本关剧情是否已经播放过 0:没有 1:有
  31. * @var type
  32. */
  33. public $plotStart = 0;
  34. }