some-dungeon-game/class_place.php

24 lines
325 B
PHP
Raw Permalink Normal View History

2021-03-18 19:58:26 +00:00
<?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;
}
}