1
0
mirror of https://github.com/AlexKrunch/AnonIB-3D.git synced 2024-09-30 15:55:26 -04:00
AnonIB-3D/ready2use/srv/php/Models/Game/Coord.php

14 lines
148 B
PHP
Raw Normal View History

2019-08-17 04:21:07 -04:00
<?php
class Coord{
public $x;
public $y;
function __construct($x, $y ) {
$this-> x = $x;
$this-> y = $y;
}
}