1234567891011121314151617181920212223242526272829 |
- <?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_battleItem
- *
- * @author c'y'zhao
- */
- class Ins_battleItem extends Object_ext{
- public $index = 0;
- public $id = 0;
- public $num = 0;
- public $isAuto = 0;//默认不是
-
- public $attrVal = 0;//默认不是
- public function __construct($arg = null) {
- parent::__construct($arg);
- }
- }
|