Ins_battleItem.php 562 B

1234567891011121314151617181920212223242526272829
  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_battleItem
  10. *
  11. * @author c'y'zhao
  12. */
  13. class Ins_battleItem extends Object_ext{
  14. public $index = 0;
  15. public $id = 0;
  16. public $num = 0;
  17. public $isAuto = 0;//默认不是
  18. public $attrVal = 0;//默认不是
  19. public function __construct($arg = null) {
  20. parent::__construct($arg);
  21. }
  22. }