mirror of
https://github.com/AlexKrunch/AnonIB-3D.git
synced 2024-11-16 01:28:07 -05:00
14 lines
148 B
PHP
14 lines
148 B
PHP
|
<?php
|
||
|
|
||
|
class Coord{
|
||
|
public $x;
|
||
|
public $y;
|
||
|
|
||
|
function __construct($x, $y ) {
|
||
|
$this-> x = $x;
|
||
|
$this-> y = $y;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|