freenet-router |
Subversion Repositories: |
Compare with Previous - Blame - Download
<?php
namespace Phem\Libraries\UI\Model;
/**
* @author Jakub PetrĹžĂlka <petrzilka@czweb.net>
*/
class Size
{
private $x;
private $y;
function __construct($x = 0, $y = 0)
{
$this->x = $x;
$this->y = $y;
}
public function getX()
{
return $this->x;
}
public function getY()
{
return $this->y;
}
}