freenet-router |
Subversion Repositories: |
[/] [trunk/] [freenet-router/] [var/] [www/] [freenet-router/] [Framework/] [Libraries/] [UI/] [Model/] [Position.php] - Rev 2
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;
}
}
Powered by WebSVN 2.2.1