Ins_YanLin.php 883 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. /*
  3. * To change this license header, choose License Headers in Project Properties.
  4. * To change this template file, choose Tools | Templates
  5. * and open the template in the editor.
  6. */
  7. namespace loyalsoft;
  8. /**
  9. * Description of Ins_YanLin
  10. *
  11. * @author cyzhao
  12. */
  13. class Ins_YanLin {
  14. /**
  15. * 言灵id
  16. * @var type
  17. */
  18. public $typeId = 0;
  19. /**
  20. * 挂在的英雄的uid
  21. * @var type
  22. */
  23. public $herouid = 0;
  24. /**
  25. * 当前的经验
  26. * @var type
  27. */
  28. public $curStarExp = 0;
  29. /**
  30. * 当前的星级
  31. * @var type
  32. */
  33. public $starLv = 0;
  34. /**
  35. * 言灵的等级
  36. * @var type
  37. */
  38. public $level = 1;
  39. public function __construct($args=null) {
  40. parent::__construct($args);
  41. }
  42. public function initialize($missId) {
  43. }
  44. }