UserCarbonModel.php 532 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace loyalsoft;
  3. /**
  4. * 玩家关卡副本数据
  5. * @version
  6. * 1.0.0 Created at 2017-5-19. by --gwang
  7. * @author gwang (mail@wanggangzero.cn)
  8. * @copyright ? 2017-5-19, SJZ LoyalSoft Corporation & gwang. All rights reserved.
  9. */
  10. class UserCarbonModel extends Object_ext
  11. {
  12. //put your code here
  13. # 当前开启的副本
  14. # 通关记录
  15. /**
  16. *
  17. * @var carbonmodel
  18. */
  19. public $openedCarbons;
  20. public function initialize()
  21. {
  22. $this->openedCarbons = ObjectInit();
  23. }
  24. }