Ins_storage.php 622 B

123456789101112131415161718192021222324252627282930
  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_storage
  10. *
  11. * @author c'y'zhao
  12. */
  13. class Ins_storage extends Object_ext {
  14. public $itemDic = null;
  15. public $equipment = null;
  16. public $yanling = null;
  17. public function __construct($arg = null) {
  18. parent::__construct($arg);
  19. $this->itemDic = ObjectInit();
  20. $this->equipment = ObjectInit();
  21. $this->yanling = ObjectInit();
  22. }
  23. }