1234567891011121314151617181920212223242526272829 |
- <?php
- namespace loyalsoft;
- /**
- * 玩家公共数据(跨区)
- * @version
- * 1.0.0 Created at 2017-4-19. 添加英雄评分记录 by --gwang
- * @author gwang (mail@wanggangzero.cn)
- * @copyright ? 2017-4-19, SJZ LoyalSoft Corporation & gwang. All rights reserved.
- */
- class PublicStateModel extends Object_ext
- {
- /**
- * 评过分的英雄id
- * @var []
- */
- public $scoredheros;
- /**
- * 玩家注册时初始化
- */
- public function initialize()
- {
- $this->scoredheros = ArrayInit();
- }
- }
|