Ins_Hero.php 562 B

1234567891011121314151617181920212223242526272829303132
  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_Hero
  10. *
  11. * @author c'y'zhao
  12. */
  13. class Ins_Hero extends Object_ext {
  14. /**
  15. * hero id
  16. * @var type
  17. */
  18. public $Id = 0;
  19. public function __construct($arg = null) {
  20. if($arg == null){
  21. } else {
  22. parent::__construct($arg);
  23. }
  24. }
  25. }