World.php 162 B

1234567891011121314
  1. <?php
  2. namespace ImiApp\Model;
  3. use Imi\Bean\Annotation\Inherit;
  4. use ImiApp\Model\Base\WorldBase;
  5. /**
  6. * World
  7. * @Inherit
  8. */
  9. class World extends WorldBase
  10. {
  11. }