PublicStateModel.php 546 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace loyalsoft;
  3. /**
  4. * 玩家公共数据(跨区)
  5. * @version
  6. * 1.0.0 Created at 2017-4-19. 添加英雄评分记录 by --gwang
  7. * @author gwang (mail@wanggangzero.cn)
  8. * @copyright ? 2017-4-19, SJZ LoyalSoft Corporation & gwang. All rights reserved.
  9. */
  10. class PublicStateModel extends Object_ext
  11. {
  12. /**
  13. * 评过分的英雄id
  14. * @var []
  15. */
  16. public $scoredheros;
  17. /**
  18. * 玩家注册时初始化
  19. */
  20. public function initialize()
  21. {
  22. $this->scoredheros = ArrayInit();
  23. }
  24. }