some-dungeon-game/class_place.php
2021-03-18 22:07:56 +02:00

23 lines
325 B
PHP

<?php
class Place
{
private $level;
private $coord;
public function __construct(Level $level, Coord $coord)
{
$this->level = $level;
$this->coord = $coord;
}
public function getCoord()
{
return $this->coord;
}
public function getLevel()
{
return $this->level;
}
}