Ins_YanLin.php 685 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. namespace loyalsoft;
  3. /**
  4. * Description of Ins_YanLin
  5. *
  6. * @author cyzhao
  7. */
  8. class Ins_YanLin extends Object_ext {
  9. /**
  10. * 言灵id
  11. * @var type
  12. */
  13. public $typeId = 0;
  14. /**
  15. * 挂在的英雄的uid
  16. * @var type
  17. */
  18. public $herouid = 0;
  19. /**
  20. * 当前的经验
  21. * @var type
  22. */
  23. public $curStarExp = 0;
  24. /**
  25. * 当前的星级
  26. * @var type
  27. */
  28. public $starLv = 0;
  29. /**
  30. * 言灵的等级
  31. * @var type
  32. */
  33. public $level = 1;
  34. public function __construct($args = null) {
  35. parent::__construct($args);
  36. }
  37. public function initialize($missId) {
  38. }
  39. }