1234567891011121314151617181920212223242526272829 |
- <?php
- namespace loyalsoft;
- /**
- * 玩家关卡副本数据
- * @version
- * 1.0.0 Created at 2017-5-19. by --gwang
- * @author gwang (mail@wanggangzero.cn)
- * @copyright ? 2017-5-19, SJZ LoyalSoft Corporation & gwang. All rights reserved.
- */
- class UserCarbonModel extends Object_ext
- {
- //put your code here
- # 当前开启的副本
- # 通关记录
- /**
- *
- * @var carbonmodel
- */
- public $openedCarbons;
- public function initialize()
- {
- $this->openedCarbons = ObjectInit();
- }
- }
|