13 lines
No EOL
166 B
PHP
13 lines
No EOL
166 B
PHP
<?php
|
|
|
|
class Point
|
|
{
|
|
public $left, $top;
|
|
function __construct ($left = 0, $top = 0)
|
|
{
|
|
$this->left = $left;
|
|
$this->top = $top;
|
|
}
|
|
}
|
|
|
|
?>
|