| 1 | <?php |
||
| 11 | class Location |
||
| 12 | { |
||
| 13 | |||
| 14 | /** @var int */ |
||
| 15 | private $x; |
||
| 16 | /** @var int */ |
||
| 17 | private $y; |
||
| 18 | /** @var LocationType */ |
||
| 19 | private $type; |
||
| 20 | /** @var Biom */ |
||
| 21 | private $biom; |
||
| 22 | |||
| 23 | 2 | public function __construct(int $x, int $y, LocationType $type, Biom $biom) |
|
| 30 | |||
| 31 | public function getBiom(): Biom |
||
| 35 | } |
||
| 36 |