HotSpotDelineation.php 418 B

123456789101112131415161718192021
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * Class HotSpotDelineation.
  5. */
  6. class HotSpotDelineation extends HotSpot
  7. {
  8. public $typePicture = 'hotspot-delineation.png';
  9. public $explanationLangVar = 'HotspotDelineation';
  10. /**
  11. * HotSpotDelineation constructor.
  12. */
  13. public function __construct()
  14. {
  15. parent::__construct();
  16. $this->type = HOT_SPOT_DELINEATION;
  17. }
  18. }