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 | 4 | public function __construct(int $x, int $y, LocationType $type, Biom $biom) |
|
30 | |||
31 | 2 | public function getBiom(): Biom |
|
35 | |||
36 | 2 | public function getX(): int |
|
40 | |||
41 | 2 | public function getY(): int |
|
45 | } |
||
46 |