1
0
mirror of https://github.com/AlexKrunch/AnonIB-3D.git synced 2024-09-30 07:45:24 -04:00
AnonIB-3D/ready2use/srv/php/Models/Game/Coord.php
2019-08-17 10:21:07 +02:00

14 lines
148 B
PHP

<?php
class Coord{
public $x;
public $y;
function __construct($x, $y ) {
$this-> x = $x;
$this-> y = $y;
}
}