1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- namespace loyalsoft;
- /**
- * Description of Ins_YanLin
- *
- * @author cyzhao
- */
- class Ins_YanLin {
- /**
- * 言灵id
- * @var type
- */
- public $typeId = 0;
-
- /**
- * 挂在的英雄的uid
- * @var type
- */
- public $herouid = 0;
-
- /**
- * 当前的经验
- * @var type
- */
- public $curStarExp = 0;
-
- /**
- * 当前的星级
- * @var type
- */
- public $starLv = 0;
-
- /**
- * 言灵的等级
- * @var type
- */
- public $level = 1;
-
- public function __construct($args=null) {
- parent::__construct($args);
- }
-
- public function initialize($missId) {
- }
- }
|