Archer.php 345 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: artem
  5. * Date: 06.07.18
  6. * Time: 21:36
  7. */
  8. include_once 'WarUnit.php';
  9. include_once 'RangeFireInterface.php';
  10. class Archer extends WarUnit implements RangeFireInterface
  11. {
  12. public function fire($goal)
  13. {
  14. }
  15. public function rangeFire(): void
  16. {
  17. echo 'range attack!!';
  18. }
  19. }