mirror of
https://github.com/AlexKrunch/AnonIB-3D.git
synced 2025-02-08 11:24:16 -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;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|