freenet-router |
Subversion Repositories: |
Compare with Previous - Blame - Download
<?php
namespace Phem\Libraries\UI\Model;
/**
*
* @author kubapet
*/
class Position
{
private $x;
private $y;
private $z;
function __construct($x = 0, $y = 0, $z = 0)
{
$this->x = $x;
$this->y = $y;
$this->z = $z;
}
public function getX()
{
return $this->x;
}
public function getY()
{
return $this->y;
}
public function getZ()
{
return $this->z;
}
}